Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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

README.md

<p align="center"> <a href="https://groundroute.ai"> <img src="./assets/banner.svg" alt="GroundRoute, web search MCP server" width="100%"/> </a> </p>

<p align="center"> <a href="https://glama.ai/mcp/servers/PROJECT-B-26/groundroute-mcp"><img src="https://glama.ai/mcp/servers/PROJECT-B-26/groundroute-mcp/badges/score.svg" alt="Glama score"/></a> <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License: MIT"/></a> <a href="https://www.python.org/"><img src="https://img.shields.io/badge/python-3.12%2B-blue.svg" alt="Python 3.12+"/></a> <a href="https://modelcontextprotocol.io"><img src="https://img.shields.io/badge/MCP-compatible-success.svg" alt="MCP compatible"/></a> <a href="https://smithery.ai/servers/groundroute-ai/web-search"><img src="https://smithery.ai/badge/groundroute-ai/web-search" alt="Smithery"/></a> </p>

Give your AI agent web search across 6 engines through one MCP search tool. Hosted. Routed. Cached.

Why GroundRoute

  • One tool, six engines. Serper, Brave, Exa, Tavily, Firecrawl, Perplexity, behind a single search call. Stop wiring up six APIs, six SDKs, six billing portals.
  • Never more than going direct. Gain-share pricing: you keep ~half of every cache saving, GroundRoute keeps ~half. On a miss, you just pay the engine. BYOK supported.
  • Routing, caching, failover, on by default. Each query goes to the cheapest engine that clears a quality bar. Repeats serve from cache. If an engine degrades, we fall back automatically. No agent code changes.

See it work (5 seconds)

A call to the search tool: ``json { "name": "search", "arguments": { "query": "what is RAGflow", "max_results": 3 } } ``

The response (trimmed): ``json { "results": [ { "url": "https://ragflow.io/docs/", "title": "Quickstart - RAGFlow", "snippet": "RAGFlow is an open-source RAG engine based on deep document understanding...", "source_engine": "serper" }, { "url": "https://github.com/infiniflow/ragflow", "title": "RAGFlow is a leading open-source Retrieval-Augmented Generation engine", "snippet": "RAGFlow is a leading open-source Retrieval-Augmented Generation (RAG) engine...", "source_engine": "serper" } ], "meta": { "request_id": "req_abc123", "cache_tier": "miss", "degraded": false, "cost_usd": 0.0021 } } ``

source_engine tells you which engine answered. meta exposes the cache tier and billed cost per call.

Benchmarked, not just shipped

We ran 170 real agent queries across all 6 engines, judged by an LLM, to map cost vs. quality per query class. Full methodology and per-engine results: State of AI Search.

---

Install

The hosted endpoint is https://api.groundroute.ai/mcp (streamable-HTTP). Get an API key at groundroute.ai/keys.

Claude Desktop / Claude Code, add to your MCP config: ``json { "mcpServers": { "groundroute": { "type": "http", "url": "https://api.groundroute.ai/mcp", "headers": { "Authorization": "Bearer gr_YOUR_KEY" } } } } ``

Cursor, ~/.cursor/mcp.json: ``json { "mcpServers": { "groundroute": { "url": "https://api.groundroute.ai/mcp", "headers": { "Authorization": "Bearer gr_YOUR_KEY" } } } } ``

VS Code (native MCP / Continue), .vscode/mcp.json: ``json { "servers": { "groundroute": { "type": "http", "url": "https://api.groundroute.ai/mcp", "headers": { "Authorization": "Bearer gr_YOUR_KEY" } } } } ``

Local / stdio-only clients, bridge stdio to HTTP with mcp-remote: ``json { "mcpServers": { "groundroute": { "command": "npx", "args": ["-y", "mcp-remote", "https://api.groundroute.ai/mcp", "--header", "Authorization:Bearer gr_YOUR_KEY"] } } } ``

Run this repo's stdio server (optional)

This repo also ships a small native stdio MCP server (server.py) that forwards to the hosted API, useful for stdio-only clients or containerized runs.

pip install -r requirements.txt
GROUNDROUTE_API_KEY=gr_YOUR_KEY python server.py

Or with Docker:

docker build -t groundroute-mcp .
docker run -i -e GROUNDROUTE_API_KEY=gr_YOUR_KEY groundroute-mcp

Introspection (tool discovery) works with no key; running a search requires GROUNDROUTE_API_KEY (get one at https://groundroute.ai/keys).

The search tool

| Param | Type | Notes | |---|---|---| | query | string | required | | mode | enum | auto (default), web, news, academic, answer, page | | max_results | integer | default 10, max 50 | | freshness | enum | fresh, semi, static; omit to auto-detect | | domains | string[] | include-only domain filter, e.g. ["arxiv.org"] | | lang | string | ISO 639-1 language code, e.g. en | | country | string | ISO 3166-1 alpha-2 country code, e.g. us |

Returns a structured result: ranked results (url / title / snippet / content / source_engine / published_at), an optional synthesized answer with citations (answer mode), and meta (request_id / cache_tier / degraded / cost_usd). 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

  • Homepage: https://groundroute.ai
  • Get a key: https://groundroute.ai/keys
  • Playground (try without installing): https://groundroute.ai/playground
  • Docs: https://groundroute.ai/docs/mcp-server

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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.