APICrate's MCP server gives Claude, Cursor, Windsurf and any MCP-compatible client instant access to 21 tools across 8 data domains — no REST calls, no boilerplate, just ask.
One API key, one config block, and your AI agent has access to all 21 tools.
Sign up free and copy your key from the dashboard. No credit card needed to start.
Add this block to your client's config file:
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"apicrate": {
"type": "http",
"url": "https://api.apicrate.io/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
// ~/.cursor/mcp.json
{
"mcpServers": {
"apicrate": {
"type": "http",
"url": "https://api.apicrate.io/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
// ~/.codeium/windsurf/mcp_settings.json
{
"mcpServers": {
"apicrate": {
"serverUrl": "https://api.apicrate.io/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
// Any MCP client supporting Streamable HTTP transport
{
"type": "http",
"url": "https://api.apicrate.io/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
Your AI agent now has access to all 21 tools. Try prompts like:
Every tool is AI-agent optimised — clean structured output, descriptive names, no REST boilerplate.
Uses Streamable HTTP transport at
https://api.apicrate.io/mcp
— the current MCP standard, replacing deprecated SSE.
MCP tool calls are billed from a dedicated daily credit pool, independent of REST API quota. Each tool costs 1–5 credits depending on complexity.
The Model Context Protocol is an open standard that lets AI agents (Claude, Cursor, GPT-based tools, etc.) discover and call tools natively — without REST wrappers or custom glue code. APICrate's MCP server exposes all its data APIs as first-class tools your agent can invoke directly.
REST API calls consume your daily request quota. MCP tool calls consume a separate daily credit pool. This means using your AI agent doesn't eat into your programmatic REST quota and vice versa. Credit costs per tool are shown in the tools grid above.
apicrate-geolocate-ip costs 5 credits (richest response — city, ISP, ASN, VPN/Tor flags). apicrate-check-email-risk costs 4 credits (six-layer risk assessment). Search tools (apicrate-search-postal-codes, apicrate-search-countries, apicrate-search-bible) cost 3 credits. Simple lookups and computations cost 1–2 credits.
APICrate's MCP server uses the Streamable HTTP transport, which is supported by any MCP-compatible client — not just Claude. If your GPT or Gemini-based tool supports MCP (e.g. via Cursor or Continue), it will work. Native OpenAI/Google clients don't yet support MCP directly.
APICrate uses Streamable HTTP (the current MCP standard), mounted at https://api.apicrate.io/mcp. The older SSE transport is deprecated in the MCP spec and not supported.
Not yet. The HTTP server is the primary distribution. A stdio wrapper suitable for local Claude Desktop use without exposing an API key is planned for a future release.