SERP ENGINE

Google Search

Fast Google web search over SerpAPI’s google_light engine — lighter and quicker than the full Google engine, returning organic_results, related_questions and related_searches with no ads or rich clutter. Standard Google operators (site:, intitle:, quoted phrases) work as-is, results localize with location/gl/hl, and pagination steps by 10.

1 tool ~1–4 s cache: 5 min SerpAPI google_light

Thirty seconds, any client.

claude mcp add --transport http google-search https://mcp.wondel.ai/google-search/mcp

One command in your terminal — the server is available in every Claude Code session.

This server works with Claude, Claude Code, Claude Desktop, Claude Cowork, Cursor, VS Code, Windsurf — and any other MCP client. Stdio-only clients connect through npx mcp-remote.

1 tool, fully typed.

Parameters below are transcribed from the server’s own zod schemas — what you see is what the tool validates.

google_search Organic Google results with related questions and searches. Full operator support, per-country and per-language localization, SafeSearch control.
Param Type Description
q * string Search query. Supports standard Google operators (site:, intitle:, quotes, …).
location string Geographic origin of the search, e.g. "Austin, Texas, United States". Mutually exclusive with uule.
uule string Google-encoded location string; alternative to location.
google_domain string
= google.com
Google domain to use, e.g. "google.de".
gl string Country code, e.g. "us", "de".
hl string Language code, e.g. "en", "fr".
lr string Restrict result languages, e.g. "lang_en" or "lang_en|lang_fr".
safe enum SafeSearch level. activeoff
nfpr integer
= 0
1 = exclude auto-corrected results (use the exact query).
filter integer
= 1
“Similar/omitted results” filter: 1 = on, 0 = show all.
start integer
= 0
Result offset: 0, 10, 20, … (+10 per page).
device enum
= desktop
Device to emulate. desktoptabletmobile
no_cache boolean
= false
Force a fresh SerpAPI fetch, bypassing this server’s result cache.
zero_trace boolean
= false
Enterprise-only ZeroTrace mode — SerpAPI stores no search params or metadata.

Prompts that just work.

Search site:github.com for MCP server registries and summarize the top results.

google_search

What are people asking about the EU AI Act right now? Pull the related questions.

google_search

Find German-language reviews of the Fairphone 5 from the last year.

google_search

What comes back

{
  "source": "serpapi/google_light",
  "fetchedAt": "2026-07-02T14:02:11.312Z",
  "query": { "q": "remote MCP servers", "gl": "us" },
  "organic_results": [
    {
      "position": 1,
      "title": "Model Context Protocol — remote servers",
      "link": "https://…",
      "snippet": "…"
    }
  ],
  "related_questions": [{ "question": "What is a remote MCP server?" }]
}

Abridged real response. Every payload carries the same envelope — source says where the data came from, fetchedAt says when, query echoes what you asked. Compact JSON in one text block, exactly how agents like it.

Add Google Search
to your agent.

mcp.wondel.ai/google-search/mcp

Authless · Read-only public data · Streamable HTTP at /mcp, legacy SSE at /google-search/sse