ToolRouter — the OpenRouter for tools

MCP serverAI & models

Toolrouter is a hub that gives your AI access to 254 hosted tools through a single connection. Once added, any AI agent can use those tools, and you pay only for the calls that are made.

Available today. Use it from your connected AI after setup.

After adding Toolrouter, connect it to your AI agent so the tools become available to it. Then try a task that needs one of the tools to confirm everything works.

Then ask your AI: use the account setup tool from ToolRouter — the OpenRouter for tools

What your AI can do with it

  • Connect your AI to 254 hosted tools at once
  • Use the tools with any AI agent
  • Reach many tools without adding them one by one
  • Pay only when your AI actually makes a call

From the project's README

As published by humanleap/toolrouter-mcp in README.md.

The OpenRouter for tools. One MCP connection gives any AI agent 250+ hosted tools, pay per call.

ToolRouter is the OpenRouter for tools. Connect once over MCP and your agent can discover and call 250+ hosted specialist tools: web search, scraping, image and video generation, SEO, finance, property, compliance and more. Free tools work immediately; paid tools are pay per call. Everything runs on the hosted gateway; nothing executes locally.

The compact routing surface costs an agent about 9,000 tokens of context for the whole catalog, versus roughly 257,000 tokens if every skill were loaded as its own tool (measured 2026-09-03; method and raw data at https://toolrouter.com/blog/mcp-tool-schema-token-cost).

Connect in one line

Hosted endpoint: https://api.toolrouter.com/mcp (streamable HTTP). No API key needed — the server provisions a free account on first connect and returns a claim link.

Claude Code

claude mcp add --transport http toolrouter https://api.toolrouter.com/mcp

Claude (chat, Desktop, mobile)

Customize → Connectors → Add custom connector, name it ToolRouter, URL https://api.toolrouter.com/mcp/anthropic.

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "toolrouter": {
      "url": "https://api.toolrouter.com/mcp"
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "toolrouter": {
      "type": "http",
      "url": "https://api.toolrouter.com/mcp"
    }
  }
}

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "toolrouter": {
      "httpUrl": "https://api.toolrouter.com/mcp"
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "toolrouter": {
      "serverUrl": "https://api.toolrouter.com/mcp"
    }
  }
}

Any other MCP client that speaks streamable HTTP can use the same URL.

Local bridge (npm)

toolrouter-mcp is a stdio bridge to the same hosted gateway, plus a CLI. Use it where a client cannot take a remote URL.

Three ways to use it

1. MCP Server (for AI agents)

Run with no arguments to start an MCP stdio server. No API key needed — auto-provisions on first use:

npx -y toolrouter-mcp

2. CLI (for terminal workflows)

npx -y toolrouter-mcp tools                    # list all tools
npx -y toolrouter-mcp search "web scraping"    # search by keyword
npx -y toolrouter-mcp call seo analyze_page --url https://example.com
npx -y toolrouter-mcp help

3. REST API (direct HTTP)

# Get an API key (or use one from ~/.toolrouter/key after MCP setup)
curl -X POST https://api.toolrouter.com/v1/auth/provision

curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"seo","skill":"analyze_page","input":{"url":"https://example.com"}}' \
  https://api.toolrouter.com/v1/tools/call

Install the local bridge

Codex CLI

codex mcp add toolrouter -- npx -y toolrouter-mcp

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "toolrouter": {
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "toolrouter": {
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

OpenClaw

Add to openclaw.json:

{
  "mcpServers": {
    "toolrouter": {
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

Cline

Open MCP settings and add:

{
  "mcpServers": {
    "toolrouter": {
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "toolrouter": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

Gemini CLI

Add to your Gemini CLI settings:

{
  "mcpServers": {
    "toolrouter": {
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "toolrouter": {
      "command": "npx",
      "args": ["-y", "toolrouter-mcp"]
    }
  }
}

API Key

No setup needed — toolrouter-mcp auto-provisions a free API key on first use and caches it to ~/.toolrouter/key. Free tools work immediately. For paid tools, visit the claim URL printed on first run to add credits.

To use an existing key instead: set TOOLROUTER_API_KEY=tr_live_xxx as an environment variable.

How It Works

This package serves two purposes from one binary:

  • MCP mode (no args): Starts an MCP stdio server that proxies tools/list and tools/call to the ToolRouter API via Streamable HTTP.
  • CLI mode (tools/search/call/help): Thin HTTP client that sends requests to the ToolRouter API and prints results. No local tool execution.

Both modes go through https://api.toolrouter.com — all processing happens on ToolRouter's infrastructure.

MCP Meta-Tools

When connected via MCP, your agent gets meta-tools for tool discovery, execution, async jobs, and full account management:

Discovery & execution:

ToolDescription
discoverFind tools by keyword, category, or * for all
use_toolExecute a tool skill
job_getPoll an async job's status and result
job_listList recent async jobs
job_cancelCancel a running async job

Credits & billing:

ToolDescription
credits_balanceGet available credit balance
credits_usageUsage breakdown and recent call history
top_up_creditsAdd credits
subscription_manageView or change your subscription
invoice_listList invoices

API keys:

ToolDescription
key_createCreate a new API key
key_listList API keys
key_deletePermanently disable an API key

Credentials (BYOK):

ToolDescription
credential_saveSave your own provider API key
credential_listList saved credentials
credential_deleteRemove a saved credential
credential_defaultSet the default credential for a provider

Connectors & account:

ToolDescription
connector_addConnect a SaaS account via OAuth
connector_listList connected accounts
account_preferencesView and update account settings
feedback_reviewRate a tool

Environment Variables

VariableRequiredDefaultDescription
TOOLROUTER_API_KEYYes (for tool calls)Your API key
TOOLROUTER_API_URLNohttps://api.toolrouter.comCustom API endpoint

CLI Reference

CommandAuth RequiredDescription
toolsNoList all available tools
search <query>NoSearch tools by keyword
call <tool> <skill> [opts]YesCall a tool skill
helpNoShow usage help

Input methods for call

# Flag-based (most common)
npx -y toolrouter-mcp call humanleap/seo analyze_page --url https://example.com

# JSON string
npx -y toolrouter-mcp call humanleap/web-search search --input '{"query":"MCP tools"}'

Requirements

  • Node.js 22+

Links

Privacy Policy

https://toolrouter.com/privacy

Support

support@toolrouter.com

Tools it offers (47)

What this server listed when ahel dialed its public endpoint in Sep 2026, with no key and no account of yours. The names are the server’s own.

  • account_setup
  • account_list
  • account_switch
  • account_preferences
  • credits_balance
  • credits_usage
  • subscription_manage
  • invoice_list
  • key_list
  • key_create
  • key_delete
  • credential_list
  • credential_save
  • credential_delete
  • credential_default
  • credential_guide
  • file_list
  • file_read
  • file_write
  • file_delete
  • persona_list
  • scene_list
  • product_list
  • outfit_list
  • connector_list
  • connector_add
  • connector_remove
  • brain_admin
  • job_list
  • job_get

Signals

Last commit
Sep 2026
Advanced
Delivery
toolrouter MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
io-github-humanleap-toolrouter
Source
github.com/humanleap/toolrouter-mcp
Hosted endpoint
https://api.toolrouter.com/mcp