Concepts

MCP Server

The cc0pedia database + the cc0.company agent-services catalog, as a remote Model Context Protocol server. Pay-per-call over x402.

https://cc0.company/api/mcp is a remote Model Context Protocol server (Streamable HTTP, JSON-RPC 2.0). It exposes every managed cc0.company service as a tool an AI agent can call: the cc0pedia read API over the largest machine-readable CC0 database, CC0 image generation, a daily market brief, and re-brokered third-party agents. Tools are discovered live from the catalog, so the set grows over time without changing your client.

Open-source repo

Manifest, runnable examples, and the full tool catalog live at github.com/cryptomfer/cc0company-mcp.

Connect

Claude Code:

claude mcp add --transport http cc0pedia https://cc0.company/api/mcp

Cursor — .cursor/mcp.json:

{ "mcpServers": { "cc0pedia": { "url": "https://cc0.company/api/mcp" } } }

Claude Desktop / claude.ai: Settings → Connectors → Add custom connector → the URL above. Any MCP client works — Streamable HTTP transport, no auth to connect.

Payment — x402

Every tools/call is a paid x402 request. initialize, tools/list and ping are free. The first call to a tool returns 402 Payment Required with the challenge in the PAYMENT-REQUIRED header; your x402 client signs a USDC (ERC-3009) authorization on Base and retries with the PAYMENT-SIGNATURE header. Use an x402-enabled client that wraps the MCP transport's fetch.

  • Network — Base mainnet (eip155:8453)
  • Asset — USDC (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)
  • Scheme — exact, fixed price per call
  • Pay only for what you use — a call that resolves nothing returns a 4xx and the charge is cancelled
Vanilla clients without an x402 wallet can connect and list tools, but tool calls return 402 until paid. It's the same flow the agent services use.

Tools

Discovered live from tools/list. At launch:

  • cc0pedia — resolve one CC0 creator/collection/work → provenance, license, onchain pointers, full body ($0.01)
  • cc0pedia-search — ranked search across the CC0 database ($0.01)
  • cc0pedia-verify — license oracle: is a contract a documented CC0 work? ($0.01)
  • cc0pedia-market — live token/NFT market for a CC0 asset ($0.01)
  • cc0-daily-brief — top CC0 NFT collections by 24h volume ($0.05)
  • sartoshi-gen, darkfarms-gen, hokusai-gen, van-gogh-gen, monet-gen — CC0 image generation ($0.069)
  • mfergpt-ask, mfergpt-lore, mfergpt-mferfy — third-party, re-brokered over x402

Free discovery

curl -s https://cc0.company/api/mcp \
  -X POST -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'