freshcrate
Home > MCP Servers > apiclaw

apiclaw

The API layer for AI agents. Dashboard + 22K APIs + 18 Direct Call providers. MCP native.

Description

The API layer for AI agents. Dashboard + 22K APIs + 18 Direct Call providers. MCP native.

README

APIClaw

The API layer for AI agents. One key for everything.

npm version npm downloads MCP

10,000+ installs. 26,700+ discoverable APIs. 1,654 callable. Intelligent LLM Gateway.

APIClaw is in early release. Core features are live and actively expanding. Provider coverage, routing intelligence, and catalog depth grow with every update.

Install

curl -fsSL https://apiclaw.cloud/install.sh | bash

Adds APIClaw as an MCP server in your Claude, Cursor, or any MCP-compatible agent. Register your email to unlock 50 calls/month.


Three Ways to Use APIClaw

1. MCP Server (Agent Discovery + Calling)

Install APIClaw and your agent gets tools to discover and call APIs directly:

discover_apis("weather data for Stockholm")
-> Weatherstack, Visual Crossing, AccuWeather, OpenWeather...

call_api("frankfurter", "latest", {"from": "USD", "to": "SEK"})
-> { "rates": { "SEK": 10.85 } }

The agent handles everything through MCP tools. Works in Claude Desktop, Cursor, Windsurf, OpenClaw, and any MCP-compatible client.

2. Intelligent Gateway (OpenAI-compatible endpoint)

Generate an sk-claw- API key at apiclaw.cloud/workspace and use APIClaw as an LLM gateway from any application:

curl api.apiclaw.cloud/v1/chat/completions \
  -H "Authorization: Bearer sk-claw-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-sonnet-4-6",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

3. CLI

Humans in the terminal, scripts, CI. Ships with @nordsym/apiclaw:

npx @nordsym/apiclaw login                    # OTP auth, terminal-native
npx @nordsym/apiclaw setup                    # auto-detect Claude, Cursor, Windsurf
apiclaw discover "send SMS to Sweden"         # search registry
apiclaw-http                                  # stand up local HTTP gateway

All three interfaces route through the same api.apiclaw.cloud gateway. One billing pipeline, one logging pipeline, one registry.

One endpoint. Automatic provider routing. The gateway selects the optimal provider based on your workspace settings:

Routing Mode Behavior
fastest Lowest latency (Groq, Mistral)
best_price Cheapest available provider
highest_quality Best model quality
balanced Weighs speed, cost, and quality

Providers routed through the gateway:

  • Groq -- Ultra-fast inference (Llama, Mixtral, Gemma)
  • Mistral -- European models (Small, Large, Codestral)
  • Together AI -- Open-source models (DeepSeek, Qwen, Llama)
  • OpenRouter -- 800+ models as fallback (GPT, Claude, Gemini, etc.)

Override per-request with X-APIClaw-Route: fastest or target a provider directly: X-APIClaw-Route: groq.

The Intelligent Gateway is in its first release. Routing logic, provider coverage, and model support are actively expanding.


API Catalog

Browse all 26,700+ indexed APIs at apiclaw.cloud/catalog.

  • Search across 31 categories
  • Toggle callable-only to filter 1,654 APIs you can call through APIClaw
  • Infinite scroll, category filters, instant search

Discoverable vs Callable

Discoverable (26,704 APIs) -- Every API in the index. Your agent can search, read specs, and evaluate them. Free and unlimited.

Callable (1,654 APIs) -- APIs your agent can actually execute through APIClaw. Two types:

  • Open APIs (1,635) -- No authentication required. APIClaw calls them directly.
  • Managed Providers (19) -- APIClaw owns the keys. You call, APIClaw authenticates.

Managed Providers

Provider What Category
OpenRouter 800+ LLMs (GPT, Claude, Gemini, Llama) AI & ML
Groq Ultra-fast inference (Llama, Mixtral, Gemma) AI & ML
Mistral Mistral models (Small, Large, Codestral) AI & ML
Together AI Open-source models (DeepSeek, Qwen, Llama) AI & ML
Cohere RAG, reranking, embeddings AI & ML
Replicate ML models (Flux, SDXL, Whisper) AI & ML
Stability AI Image generation (SD3, SDXL) AI & ML
ElevenLabs Text-to-speech (29 languages) Voice
Deepgram Speech-to-text (Nova-3) Voice
AssemblyAI Audio intelligence, diarization Voice
Brave Search Privacy-first web search Search
Serper Google SERP results Search
Firecrawl Web scraping and crawling Scraping
Twilio SMS and voice calls (global) Communication
46elks SMS (Nordic/EU, GDPR) Communication
Resend Transactional email Email
E2B Code execution sandbox Dev Tools
GitHub Repository and code access Dev Tools
APILayer 27 APIs (finance, geo, scraping, news) Multi-API

MCP Tools

Tool What
discover_apis Search 26,704 APIs by capability
get_api_details Full specs, pricing, auth
call_api Execute through APIClaw proxy
list_connected See available managed providers
check_balance Usage and remaining calls
register_owner Register email, unlock 50 calls/month

Pricing

Plan Price What you get
Free $0 forever Discovery, open APIs, 50 calls/month
Pro $79/month All managed providers, priority support
Scale $249/month Volume pricing, dedicated onboarding, SLA
Enterprise Custom Private deployment, custom limits, book a call

Pass-through pricing on managed provider calls + 30% margin. No hidden fees.


Catalog - Dashboard - Docs - Book a Call

MIT License

Release History

VersionChangesUrgencyDate
v2.0.0## APIClaw 2.0.0 -- The Intelligent Gateway Release The biggest APIClaw update yet. A unified execution layer, intelligent model routing, and 23 managed providers. ### Intelligent Gateway - **Unified execution** at `api.apiclaw.cloud` -- single path for both MCP and HTTP (`sk-claw-` keys) - **Advisor pattern** -- Mistral Small analyzes prompts and picks the optimal provider+model automatically - **5-step routing chain**: direct model match -> advisor -> static mode -> preferred provider -> OpeMedium4/12/2026
v1.9.0## What's New ### API Catalog Browse all 26,704 indexed APIs at [apiclaw.cloud/catalog](https://apiclaw.cloud/catalog). Infinite scroll, search, category filters across 31 categories. Toggle callable-only to see the 1,654 APIs you can call instantly. ### Two Ways to Call **MCP Server** β€” Add APIClaw to your Claude, Cursor, or any MCP-compatible agent config. The agent discovers APIs and calls them through MCP tools. **Workspace API Key** β€” Generate an `sk-claw-` key at [apiclaw.cloud/workspaMedium4/10/2026
v1.8.7## What's New ### Intelligent LLM Gateway OpenAI-compatible endpoint at `api.apiclaw.cloud/v1/chat/completions`. One key routes across Groq, Mistral, Together AI, OpenRouter with automatic provider selection. 4-step routing: direct model match > routing mode > preferred providers > OpenRouter fallback (800+ models). ### Workspace Settings New workspace-level controls: routing mode (fastest, best_price, highest_quality, balanced), budget limits, provider preferences, OpenRouter fallback toggleMedium4/6/2026
v1.8.0## What's New **curl installer** β€” works on any Mac, even without Node.js: ```bash curl -fsSL https://apiclaw.nordsym.com/install.sh | bash ``` - Automatically installs Node.js if missing (via Homebrew or official pkg) - All user-facing docs updated with new install command - Landing page, README, workspace UI all updated **npm:** https://www.npmjs.com/package/@nordsym/apiclawMedium4/2/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

claude-code-configClaude Code skills, architectural principles, and alternative approaches for AI-assisted development0.0.0
mcp-brasilMCP Server para 41 APIs pΓΊblicas brasileirasv0.12.1
zuckerbot-mcpCLI + MCP server for ZuckerBot β€” run Facebook ad campaigns from your terminal or AI agent0.3.1
mofloMoFlo β€” AI agent orchestration for Claude Code. Forked from ruflo/claude-flow with patches applied to source, plus feature-level orchestration.4.8.79
@quetra/mcpQuetraAI MCP server β€” AI agent governance as MCP tools0.4.3