Integration Guides
CCPEDIA exposes its MCP at https://ccpedia.xyz/mcp with no auth and a generous rate limit. Pick your AI tool below for the matching config snippet.
Prefer a guided UI? /for-ai has an interactive wizard with auto-detect + copy-button + a live connection test.
Claude Desktop
Anthropic's desktop app — easiest path for newcomers.
Config:
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) · %APPDATA%\Claude\claude_desktop_config.json (Windows){
"mcpServers": {
"ccpedia": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ccpedia.xyz/mcp"]
}
}
}- Restart Claude Desktop after editing the file.
- No authentication; the server is public and rate-limited.
- mcp-remote bridges the streamable-HTTP transport to Claude Desktop's stdio expectation.
Cursor
AI-first IDE; Canton-aware autocompletes once connected.
Config:
Cursor → Settings → MCP → Add new MCP server{
"mcpServers": {
"ccpedia": {
"url": "https://ccpedia.xyz/mcp"
}
}
}- Cursor talks streamable-HTTP natively; no mcp-remote needed.
- Tools appear under the @ menu in Composer chat.
Windsurf
Codeium's AI IDE.
Config:
~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"ccpedia": {
"serverUrl": "https://ccpedia.xyz/mcp"
}
}
}- Field name is `serverUrl`, not `url`. Restart Windsurf after editing.
Claude Code (CLI)
Anthropic's terminal CLI — adds CCPEDIA tools to your shell sessions.
Config:
project-root .mcp.json (or run `claude mcp add`)claude mcp add ccpedia https://ccpedia.xyz/mcp
- Per-project scope by default; pass --user-scope to share across projects.
Zed
High-performance editor with first-class agent support.
Config:
Zed settings.json{
"context_servers": {
"ccpedia": {
"command": { "path": "npx", "args": ["-y", "mcp-remote", "https://ccpedia.xyz/mcp"] },
"settings": {}
}
}
}- Reload Zed after editing settings.
Any MCP client
Streamable-HTTP at the URL below — no auth.
Config:
Your MCP client's server configurationhttps://ccpedia.xyz/mcp
- Rate limit: 60 calls per 15 min per IP.
- Supports tools/list and tools/call methods (no resources required to use).
- Transport: Streamable HTTP — see https://modelcontextprotocol.io/specification.