Private Betaβ€”Found a bug or have feedback? Share it β†’
Model Context Protocol

Connect AI agents to 64 tools
across 34 APIs in one step

The API Clearinghouse MCP server exposes every API in the catalog as a native tool for Claude, Cursor, and any MCP-compatible AI agent. Connect in trial mode with no key, or use a real key for full production access.

Trial Mode β€” no API key required

Connect now, no key needed

Add this config to Claude Desktop or Cursor. You'll get instant access to discovery tools, live demos, and an in-conversation access request flow β€” no signup required.

{
  "mcpServers": {
    "clearinghouse": {
      "url": "https://mcp.apiclearinghouse.com/mcp"
    }
  }
}

What's available in trial mode

  • βœ“ get_started β€” orientation and next steps
  • βœ“ get_catalog β€” browse all 34 APIs
  • βœ“ search_apis β€” search by name or category
  • βœ“ find_tools β€” ranked API recommendations
  • βœ“ list_demos β€” see available demos
  • βœ“ run_demo β€” run live multi-API demos
  • βœ“ request_access β€” join the beta in-conversation

Starter prompts to try

  • β€œWhat can you do with this MCP server?”
  • β€œFind tools for crypto and weather.”
  • β€œRun the sports-signal demo.”
  • β€œRequest beta access for me.”

Full execution of all 64 tools requires an API key. Request access β†’

What is MCP?

The Model Context Protocol (MCP) is an open standard by Anthropic that lets AI assistants call external tools and APIs. When you connect an MCP server to Claude Desktop or an AI agent, it automatically discovers available tools and can call them in response to natural language requests.

API Clearinghouse runs a production MCP server at mcp.apiclearinghouse.com. Every API in the catalog becomes a tool β€” weather, crypto prices, PokΓ©mon data, country info, and more. Tool discovery is public; tool execution requires an API key.

Quick Start

1

Get access

API Clearinghouse is in private beta. Join the waitlist or call request_access in trial mode to submit from inside your agent conversation. Once invited, sign up and generate an API key from your dashboard β€” it looks like chk_live_...

2

Configure Claude Desktop

Open your Claude Desktop config file and add the clearinghouse server:

Config location:~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows)

{
  "mcpServers": {
    "clearinghouse": {
      "url": "https://mcp.apiclearinghouse.com/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY"
      }
    }
  }
}
Security note: Replace YOUR_API_KEY with your real key after creating the file. Never commit a config file containing a real API key to version control β€” add claude_desktop_config.json to your .gitignore if your home directory is tracked. Restart Claude Desktop after saving.
2b

Or configure Cursor

Add to your .cursor/mcp.json or Cursor settings:

{
  "mcpServers": {
    "clearinghouse": {
      "url": "https://mcp.apiclearinghouse.com/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY"
      }
    }
  }
}

If .cursor/mcp.json is inside a tracked repo, add it to .gitignore before adding your real key.

3

Ask Claude a question

Open a new Claude Desktop chat and try:

β€œWhat's the current weather in Tokyo?”
β€œWhat are the public holidays in Germany this year?”
β€œWhat is Pikachu's base stats?”
β€œShow me the current Bitcoin price.”

Claude will automatically call the relevant clearinghouse tool and return real data.

Using with the Anthropic SDK

Connect the MCP server programmatically in agent code using the Anthropic SDK. Store your key in an environment variable β€” never hardcode it:

import Anthropic from '@anthropic-ai/sdk'

const client = new Anthropic()

const response = await client.beta.messages.create({
  model: 'claude-opus-4-6',
  max_tokens: 1024,
  mcp_servers: [
    {
      type: 'url',
      url: 'https://mcp.apiclearinghouse.com/mcp',
      name: 'clearinghouse',
      authorization_token: process.env.CLEARINGHOUSE_API_KEY,
    }
  ],
  messages: [
    {
      role: 'user',
      content: 'What is the weather in Paris right now?'
    }
  ]
})

console.log(response.content)

Requires @anthropic-ai/sdk v0.36+. See the Anthropic MCP docs for more details.

Available Tools

Every active API in the catalog is registered as an MCP tool. Tools are named clearinghouse_{api_slug}_{endpoint}. Tool discovery (tools/list) is public. Tool execution requires an API key.

Tool nameDescription
clearinghouse_weather_currentCurrent weather by lat/lon
clearinghouse_geocoding_searchConvert address to coordinates
clearinghouse_crypto-prices_priceLive crypto prices (BTC, ETH, ...)
clearinghouse_countries_name_{name}Country data by name
clearinghouse_pokemon_pokemon_{name}PokΓ©mon stats and types
clearinghouse_public-holidays_holidays_{year}_{code}Public holidays by country
clearinghouse_air-quality_currentAir quality index by location
+ 57 more toolsSee full API catalog

Run GET /v1/apis for the full list.

Ready to connect your AI agent?

Get a free API key and start calling 64 tools across 34 APIs from Claude in under 2 minutes.