CCPEDIAdocs
Integrations

Claude Desktop

Add CCPEDIA to Anthropic's Claude Desktop app. The easiest path.

Open the config file

Edit or create the Claude Desktop MCP config.

On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json. On Windows: %APPDATA%\Claude\claude_desktop_config.json.

Add the CCPEDIA server block

{
  "mcpServers": {
    "ccpedia": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://ccpedia.xyz/mcp"]
    }
  }
}

Restart Claude Desktop

Quit completely (Cmd+Q on macOS), then reopen. CCPEDIA tools appear in the tools picker.

Try it

Ask: "What's the current Canton SDK version?" Claude should call get_current_versions and answer with live data.

Why mcp-remote? Claude Desktop expects stdio transport. CCPEDIA serves streamable HTTP. The mcp-remote bridge translates between the two. No other setup.

Verification

Run this from a terminal to confirm Claude Desktop can reach CCPEDIA:

curl -s -X POST https://ccpedia.xyz/mcp \
  -H 'content-type: application/json' \
  -H 'accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | head -c 200

You should see JSON starting with {"jsonrpc":"2.0"....

Troubleshooting

On this page