Add Crush MCP installation instructions to README

Add comprehensive installation guide for using Context7 MCP with Charm's Crush CLI tool, including HTTP, SSE, and local server connection options.
This commit is contained in:
Jongwon Youn 2025-08-02 13:48:16 +09:00
parent 8f8cf0f19d
commit 6280cf2851
No known key found for this signature in database

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>