streamable-httpupdated 2mo ago
The largest machine-readable CC0 database (cc0pedia) + the whole cc0.company agent-services catalog, as a remote Model Context Protocol server. Pay-per-call over x402 (USDC on Base).
What can you do with cc0company mcp?
cc0company MCP
The largest machine-readable CC0 database (cc0pedia) + the whole cc0.company agent-services catalog, as a remote Model Context Protocol server. Pay-per-call over x402 (USDC on Base).
Endpoint: https://cc0.company/api/mcp โ Streamable HTTP, JSON-RPC 2.0.
What it is
A remote MCP server that turns cc0.company's managed agent services into tools any AI agent can call:
- cc0pedia read API โ look up / search / verify / price any CC0 creator, NFT collection, token or work. Provenance, license, on-chain pointers (contracts, chains, OpenSea slugs) and live market data over the largest structured CC0 database.
- CC0 image generation โ fine-tuned models whose output is public domain.
- Market data โ a daily digest of the top CC0 NFT collections.
- Third-party agents โ re-brokered over x402 (e.g. mfergpt).
Tools are discovered live from the catalog (tools/list), so the set grows over time without changing your client.
Why agents pay
cc0pedia is a public good; serving it to autonomous agents at scale is not. Every tool call is a tiny x402 micropayment โ the agentic economy in one request: an agent verifies a CC0 license, pulls provenance + market data, and pays for exactly what it used, with no account and no API key.
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 โ https://cc0.company/api/mcp
Any MCP client โ Streamable HTTP transport, the URL above. No auth to connect.
Payment โ x402
Every tools/call is a paid x402 request. Free: initialize, tools/list, ping.
| Protocol | x402 v2 |
| Network | Base mainnet โ eip155:8453 |
| Asset | USDC โ 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 |
| Scheme | exact (fixed price per call) |
| Facilitator | Coinbase CDP |
Flow: the first call returns HTTP 402 with the challenge in the PAYMENT-REQUIRED header. Your x402 client signs an EIP-3009 USDC authorization and retries with the PAYMENT-SIGNATURE header; the facilitator verifies + settles and the tool runs. Use an x402-enabled client (wrap your MCP transport's fetch with x402). Pay only for what you use: a call that resolves nothing returns a 4xx and the charge is cancelled โ you are never billed for an empty answer.
See examples/ for a working free-discovery script and an end-to-end paid call.
Tools
Discovered dynamically โ tools/list is the source of truth. At launch:
| Tool | Price | What it does |
|---|---|---|
cc0pedia |
$0.01 | Resolve one CC0 creator/collection/work by name or slug โ provenance, license, on-chain pointers, full CC0 body |
cc0pedia-search |
$0.01 | Ranked free-text search across the CC0 database |
cc0pedia-verify |
$0.01 | License oracle โ is a contract a documented CC0 work? + full provenance |
cc0pedia-market |
$0.01 | Live market for a CC0 asset โ token price/FDV/liquidity/volume, or NFT floor/volume/owners |
cc0-daily-brief |
$0.05 | Hourly digest of the top CC0 NFT collections by 24h volume |
sartoshi-gen ยท darkfarms-gen ยท hokusai-gen ยท van-gogh-gen ยท monet-gen |
$0.069 | CC0 image generation (async โ returns a job_id to poll) |
mfergpt-ask ยท mfergpt-lore ยท mfergpt-mferfy |
varies | Third-party mfergpt services, re-brokered over x402 |
Quick check (free)
curl -s https://cc0.company/api/mcp \
-X POST -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' \
| jq '.result.tools[].name'
Data license
cc0pedia content is dedicated to the public domain (CC0-1.0) โ reuse, repost, remix without attribution. This repository is CC0 too.
Links
- Site โ https://cc0.company
- Encyclopedia โ https://cc0.company/cc0pedia
- Agent docs โ https://cc0.company/agents?tab=docs
Install
Add cc0company mcp to your client. Pick the one you use.
claude mcp add --transport http cc0company-mcp https://cc0.company/api/mcpcodex mcp add cc0company-mcp --url https://cc0.company/api/mcp{
"mcpServers": {
"cc0company-mcp": {
"url": "https://cc0.company/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"cc0company-mcp": {
"type": "http",
"url": "https://cc0.company/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"cc0company-mcp": {
"url": "https://cc0.company/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"cc0company-mcp": {
"serverUrl": "https://cc0.company/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 63 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 2.0.0Latest | Jun 29, 2026 |