Odel
groundroute mcp

groundroute mcp

@project-b-26AI AgentsMITUpdated Today

Web search for AI agents — one tool across 6 engines, routed to the cheapest + cached.

Server endpointStreamable HTTP

This server is hosted by a third party — Odel doesn't run or proxy it. Connecting to this URL talks directly to the upstream server. Managed auth and proxying through Odel are coming soon.

GroundRoute — web search MCP server

smithery badge

Give your AI agent web search across 6 engines (Serper, Brave, Exa, Tavily, Firecrawl, Perplexity) through one MCP search tool. GroundRoute routes each query to the cheapest engine that meets the quality bar, caches the repeats, and fails over automatically — so you get good results without overpaying or wiring up six APIs.

Install

Claude Desktop / Claude Code — add to your MCP config:

{
  "mcpServers": {
    "groundroute": {
      "type": "http",
      "url": "https://api.groundroute.ai/mcp",
      "headers": { "Authorization": "Bearer gr_YOUR_KEY" }
    }
  }
}

Cursor~/.cursor/mcp.json:

{ "mcpServers": { "groundroute": { "url": "https://api.groundroute.ai/mcp",
  "headers": { "Authorization": "Bearer gr_YOUR_KEY" } } } }

VS Code (native MCP / Continue) — .vscode/mcp.json:

{ "servers": { "groundroute": { "type": "http", "url": "https://api.groundroute.ai/mcp",
  "headers": { "Authorization": "Bearer gr_YOUR_KEY" } } } }

Local / stdio-only clients — bridge stdio ↔ HTTP with mcp-remote:

{ "mcpServers": { "groundroute": {
  "command": "npx",
  "args": ["-y", "mcp-remote", "https://api.groundroute.ai/mcp", "--header", "Authorization:Bearer gr_YOUR_KEY"]
} } }

The search tool

ParamTypeNotes
querystringrequired
max_resultsintegerdefault 5, max 50
modeenumauto (default), web, news, academic, answer, page

Returns ranked results (and a synthesized answer for answer-class queries). Routed, cached, and reliable.

How it works

One endpoint in front of many search engines, with price-led routing, caching, failover, and usage governance. See the docs and the State of AI Search benchmark (170 real agent queries across all 6 engines).

Links

registry-manifest.json in this repo is the listing manifest for MCP registries.