diff --git a/README.md b/README.md
index e30538c..eedfd93 100644
--- a/README.md
+++ b/README.md
@@ -377,6 +377,56 @@ Add this to your Claude Desktop `claude_desktop_config.json` file. See [Claude D
+
+Install in Crush
+
+Add this to your Crush configuration file. See [Crush MCP docs](https://github.com/charmbracelet/crush#mcps) for more info.
+
+#### Crush Remote Server Connection (HTTP)
+
+```json
+{
+ "$schema": "https://charm.land/crush.json",
+ "mcp": {
+ "context7": {
+ "type": "http",
+ "url": "https://mcp.context7.com/mcp"
+ }
+ }
+}
+```
+
+#### Crush Remote Server Connection (SSE)
+
+```json
+{
+ "$schema": "https://charm.land/crush.json",
+ "mcp": {
+ "context7": {
+ "type": "sse",
+ "url": "https://mcp.context7.com/sse"
+ }
+ }
+}
+```
+
+#### Crush Local Server Connection
+
+```json
+{
+ "$schema": "https://charm.land/crush.json",
+ "mcp": {
+ "context7": {
+ "type": "stdio",
+ "command": "npx",
+ "args": ["-y", "@upstash/context7-mcp"]
+ }
+ }
+}
+```
+
+
+
Install in Cline