CCPEDIAdocs
Integrations

Any MCP client

Streamable HTTP, JSON-RPC 2.0, no auth. Works with anything that speaks MCP.

Endpoint

POST https://ccpedia.xyz/mcp
content-type: application/json
accept: application/json, text/event-stream

Minimal handshake

curl -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":{}}'

Calling a tool

curl -X POST https://ccpedia.xyz/mcp \
  -H 'content-type: application/json' \
  -H 'accept: application/json, text/event-stream' \
  -d '{
    "jsonrpc":"2.0",
    "id":2,
    "method":"tools/call",
    "params": { "name":"diagnose_error", "arguments": { "error_text":"TOPOLOGY_TOO_MANY_PENDING_TOPOLOGY_TRANSACTIONS" } }
  }'

What CCPEDIA supports

MCP methodSupported
tools/listyes
tools/callyes
resources/listno (all data is tool-fronted)
prompts/listno
pingyes

Rate limit

60 calls per 15-minute window per IP. Exceeding it returns 429 with a Retry-After header. If you need more, self-host. Source is Apache 2.0 at github.com/UnityNodes/ccpedia.

On this page