Merge pull request #492 from korECM/add-crush-mcp-instructions

This commit is contained in:
Enes Gules 2025-08-03 09:57:52 +03:00 committed by GitHub
commit 1a347db098
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -377,6 +377,56 @@ Add this to your Claude Desktop `claude_desktop_config.json` file. See [Claude D
</details>
<details>
<summary><b>Install in Crush</b></summary>
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"]
}
}
}
```
</details>
<details>
<summary>
<b>Install in Cline</b>