Access, auth, and limits
The server accepts an API key two ways. The documented path form, https://mcp.serpapi.com/{API_KEY}/mcp, appears in every published snippet including the Claude Desktop config, the VS Code install badge and the claude mcp add command. The undocumented but supported alternative is a plain Authorization: Bearer header against https://mcp.serpapi.com/mcp.
This matters more than it usually would because SerpApi is metered: a leaked key spends your search quota. URLs are simply worse at holding secrets than headers are, since they get logged by proxies, recorded in shell history and committed into config files that end up in repositories. Nothing is lost by switching, so switch.
There is no separate MCP plan or add-on. SerpApi's own MCP page says the integration performs live searches using your existing SerpApi subscription, so every call an agent makes spends from the same search quota your other integrations draw on. That is the practical reason to care about the key handling above: a leaked path-form URL does not just expose a credential, it exposes the quota you are already paying for.
Where it works and what to build
SerpApi documents Claude Desktop, Claude Code, VS Code, openclaw and hermes, all over streamable HTTP, and any MCP client will connect. Setup is a single URL in each case.
The obvious use is grounding: give an agent live SERP data so it answers from what is actually ranking today rather than from training data. That makes it a useful companion to any research or competitive-analysis workflow. Keep an eye on volume, because an agent that decides to check twenty queries will happily spend twenty searches doing it.
Which AI clients can use SerpApi MCP?
Not every AI assistant supports MCP natively. Per-client picture for SerpApi:
| Client | Support | Notes |
|---|---|---|
| Claude (Desktop/Web) | Native MCP | — |
| Claude Code | Native MCP | — |
How to connect SerpApi MCP to Claude Desktop
Add this block to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows), then restart Claude Desktop. Cursor and Codex use a similar schema.
{
"mcpServers": {
"serpapi": {
"command": "npx",
"args": ["mcp-remote", "<YOUR_MCP_URL>"]
}
}
}
// HTTP-transport MCP. Get your <YOUR_MCP_URL> from the vendor dashboard.
// Server source: https://mcp.serpapi.com/mcp
// Claude Code (one-liner): claude mcp add serpapi <YOUR_MCP_URL> --transport httpSome MCP servers require an API key. Check the source page for setup: mcp.serpapi.com/mcp.
Does SerpApi MCP cost extra?
SerpApi ships an official MCP server that uses your existing subscription credentials.
- No separate MCP licence to buy. You pay for your SerpApi plan, the MCP server queries that account.
- Whether it's gated to a specific tier wasn't extracted automatically — verify the access requirements on the MCP page or pricing docs.
SerpApi also publishes a REST API
SerpApi publishes an API, but per-tier gating wasn't extracted automatically.
What you can do with SerpApi from an AI agent
Three shapes of agent workflow. Pick the row that matches how you actually use Claude / Cursor / Codex day to day.
Skip the dashboard, ask Claude
- "What keywords moved this week?" answered in seconds
- Quick one-off questions without leaving the editor
- Pipe SerpApi data into your personal notes / docs without writing a script
Run client analysis at agent speed
- Hand the MCP server to your team — every consultant can ask Claude about any client's SerpApi account
- Multi-account workflows without context-switching the SerpApi UI
- Reports you'd normally spend hours on, done before standup
Production agent workflows
- Embed in your internal Codex / Cursor agents that triage SerpApi data daily
- Combine with other MCP servers in a multi-step agent chain
- Constrain agents to read-only roles to keep production SerpApi safe
Limits and gotchas
- Official MCP server — published by SerpApi themselves, so it should track product changes.
- Fallback: the REST API works for any flow the MCP server doesn't cover.
- Rate limits: MCP calls count against your underlying SerpApi API quota. Burst usage from a curious agent can drain a daily allowance fast.
Agent-readiness verdict
A capable hosted server undermined by the setup it recommends. The Bearer-header route is right there and safer, so use it, and treat any config file holding a path-form URL as a secret.
Remote streamable HTTP. Auth is path-based (API key in the URL) or a bearer header. Self-hosting is possible via github.com/serpapi/serpapi-mcp. The previously stored value was the docs page at serpapi.com/integrations/mcp, not an endpoint.
Scored by Joonas (TMB).
SerpApi MCP & API FAQ
Is the SerpApi MCP server official?+
Can I use the SerpApi MCP with Cursor or Codex?+
Does SerpApi have a public API?+
Sources
- SerpApi official site: https://serpapi.com
- MCP server page: https://mcp.serpapi.com/mcp
- API docs: https://github.com/serpapi/serpapi-mcp
Data verified by Joonas on the dates shown. MCP server status auto-rechecked weekly.
10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

