freshcrate
Skin:/
Home > MCP Servers > apiclaw

apiclaw

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

Why this rank:Recent releaseHealthy release cadenceStrong adoption

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.8.6Removes the legacy email magic-link login. The only login paths are now Clerk web (apiclaw.cloud/sign-in) and the browser-loopback CLI (npx @nordsym/apiclaw auth login). CLI --version unified to 2.8.6; 'apiclaw login' is now a thin alias for 'apiclaw auth login'.High6/2/2026
convex-2026-05-27-decontention**Backend-only release** (no npm version bump). Convex deployment `adventurous-avocet-799`. ## What changed Convex Insights flagged **88 OCC retries** against the `workspaces` table from `logs:createProxyLog` in a single 9-hour window (2026-05-27), plus **42 retries** on `apiKeys:touchKey` against `workspaceApiKeys`. Both came from synchronous timestamp patches on every gateway call โ€” fan-in on the same doc when multiple agents called concurrently. Both timestamps are derivable from `apiLogs.High5/27/2026
v2.7.0-mcp-oauth## Remote MCP is live Paste one URL into Grok, Cursor, ChatGPT, or Claude Desktop: ``` https://apiclaw.cloud/mcp ``` OAuth 2.1 with PKCE + RFC 7591 dynamic client registration handles the rest. No npm install, no API keys to copy. Email-verified workspace required for any token issuance โ€” three doors became four, all gated by the same auth layer. ### Connect Grok in 20 seconds 1. Grok โ†’ Settings โ†’ Connectors โ†’ Add MCP server 2. Paste `https://apiclaw.cloud/mcp` 3. Sign in with your APIClaw High5/7/2026
v2.3.0APIClaw 2.3.0 ๐Ÿฆž ๐ŸŒŠ DeepInfra is the 24th managed provider ๐ŸŒ™ Kimi K2.6 live โ€” open-weights spotlight ๐Ÿณ DeepSeek V3.2, Llama 3.3, Qwen 2.5 โ€” same proxy โšก Aliases: `kimi`, `kimi-k2.6`, `deepseek-v3.2` route automatically ๐Ÿ› + npm install fix from 2.2.1 (dist/ now ships) ``` npm i -g @nordsym/apiclaw@2.3.0 ``` ```bash curl -X POST https://api.apiclaw.cloud/v1/chat/completions \ -H "Authorization: Bearer sk-claw-..." \ -d '{"model":"kimi","messages":[{"role":"user","content":"hi"}]}' ```High4/22/2026
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 developmentmain@2026-05-28
mcp-brasilMCP Server para 41 APIs pรบblicas brasileirasv0.14.0
justoneapi-mcpProduction-ready MCP server exposing JustOneAPI endpoints to AI agents with raw JSON responses.main@2026-06-06
mcp-rag-agent๐Ÿ” Build a production-ready RAG system that combines LangGraph and MCP integration for precise, context-aware AI-driven question answering.main@2026-06-06
mcp-taiwan-legal-dbๅฐ็ฃๅธๆณ•้™ขๅˆคๆฑบ + ๅ…จๅœ‹ๆณ•่ฆ่ณ‡ๆ–™ๅบซ MCP server ยท Query Taiwan legal data from any MCP AI agentmain@2026-06-05

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. โœจ
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme