Google SERP as JSON: organic, AI Overview, People Also Ask, AI Mode, news, shopping. No Cloud setup.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client eight read-only Google Search tools. Pull the live SERP with its AI Overview and People Also Ask, run a Google AI Mode query, and read news, shopping, product detail and short-video results, all as structured JSON, with no Google Cloud project and no search-engine setup.
"SERP" and "Google Search" are the same product here. This server returns Google search-engine results pages, parsed.
An MCP client that speaks streamable HTTP with custom headers. A HasData API key from the dashboard, free to create with no card, and the trial covers about 100 to 200 calls depending on the tool. Nothing else. This is a remote server, so the simplest path is a URL and a header, with no Google Cloud project or Programmable Search Engine to set up. A stdio-only client can use the @hasdata/google-search-mcp (npm) or hasdata-google-search-mcp (PyPI) launcher instead.
| URL | https://mcp.hasdata.com/api/mcp?apis=google_serp |
| Transport | HTTP, streamable |
| Auth header | x-api-key: HASDATA_API_KEY |
The server URL is the same for every client. We run it hands-on in Claude Code and Claude Desktop. The other blocks follow each client's own documented format for a remote server.
Clients with OAuth support can add the same URL as a connector and sign in without putting a key in a config file.
Claude Desktop loads only local (stdio) servers from its config file, so it reaches a remote server through a stdio launcher. The @hasdata/google-search-mcp package is that launcher, and it reads the key from the environment.
claude_desktop_config.json:
Python instead of Node? Swap the launcher for the PyPI package, which uvx runs without a manual install:
A client with OAuth support can instead add the URL as a custom connector and skip the launcher.
.cursor/mcp.json:
~/.codeium/windsurf/mcp_config.json:
.vscode/mcp.json:
~/.gemini/settings.json:
Search Google for
best running shoesand give me the organic top ten plus the AI Overview.
One call, 10 credits. The SERP response carries the AI Overview inline alongside the organic results.
For the same query, take each People Also Ask question and pull its AI Overview answer with sources.
One call per question, 5 credits each. Each relatedQuestions entry holds an aiOverview.pageToken, and the AI Overview tool turns that token into the answer blocks and their references.
Ask Google AI Mode
what is the Model Context Protocoland give me the answer with its citations.
One call, 10 credits. AI Mode returns the generated answer as text blocks with a reference list.
Search Google Shopping for
nike air max, then pull the full product card for the top result: every store selling it, the price range and the review breakdown.
Two calls. Shopping is 10 credits and returns a token per product, and the immersive product tool spends 5 to expand that token into stores, variants and reviews.
Get the latest Google News for
artificial intelligence, and separately the short-video results forcooking pasta.
Two calls, 10 credits each.
The workflow leans on two chains. A SERP response hands back an aiOverview inline and a pageToken on every People Also Ask question, so extracting Google's generative answers is either free with the search or one 5-credit follow-up per question. A shopping result likewise hands back a token per product, so the jump from a listing to its full multi-store card is a single call.
Eight tools, all read-only. Samples below are trimmed from real calls, and the results in them change as Google changes, so read them as shapes. Each tool name links to its endpoint reference.
The samples are the payload, not the whole response. A tools/call result carries one text block, and that text is itself JSON holding url, status, text and json, with the scraped data under json. From a raw JSON-RPC response the path is result.content[0].text, parsed, then .json. A chat client unwraps that for you and code talking to the endpoint directly does not.
hasdata_google_serp_serp_getSearchResults
The full results page for a query.
| Parameter | Type | Required | Notes |
|---|---|---|---|
q | string | yes | The search query, exactly as a user would type it |
gl / hl | string | Two-letter country and language codes | |
location / uule | string | Geographic location for the search, by name or as a uule string | |
num | number | Approximate results per page. Google now caps a page at about ten and ignores anything higher, so num above 10 fetches no more | |
start | number | Result offset for paging | |
tbm / tbs | string | Search type and advanced filters, the raw Google parameters | |
deviceType | string | desktop, mobile or tablet |
Returns searchInformation, organicResults, aiOverview, relatedQuestions, relatedSearches, perspectives, immersiveProducts and pagination, with whichever blocks Google shows for the query. Organic entries carry position, title, link, displayedLink, source, snippet, snippetHighlitedWords, date and images.
The AI Overview arrives two ways. Usually
aiOverviewis inline, withtextBlocksandreferencesyou can read straight away. Sometimes Google gates it behind a token, and thenaiOverviewcarries apageTokenand ahasdataLinkinstead of the blocks. EveryrelatedQuestionsentry is that second case too. It holds aquestionand anaiOverviewwith the samepageTokenandhasdataLink, which the AI Overview tool below expands. So the People Also Ask answers are AI Overviews you fetch one token at a time. The top-levelaiOverviewis inline on most queries and a token on a few, so read it both ways.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/hasdata-google-search-serp)<a href="https://allmcps.com/mcp/hasdata-google-search-serp"><img src="https://allmcps.com/api/badge/hasdata-google-search-serp?style=directory" alt="HasData Google Search (SERP) on AllMCPs" /></a>