mirror of
https://github.com/upstash/context7.git
synced 2025-11-25 06:26:47 +00:00
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:
parent
8f8cf0f19d
commit
6280cf2851
50
README.md
50
README.md
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user