SERPdive
OfficialThe SERPdive MCP server lets you perform real-time web searches and retrieve clean, LLM-ready page content (not just links) from the live web.
Search the live web in any language with automatic localization, returning structured results with
url,title,date, andcontentfields ready for citationGet current information beyond LLM training cutoffs: news, prices, software releases, documentation, sports scores, niche facts, and more
Choose search depth via three models:
krill— free and unlimited under fair use; shortest useful answer (~700 tokens, low priority)mako(default) — fast and concise, returning the key fact-carrying sentences from each page (1 credit per search)moby— full page text for deep research or long-document analysis; slower and more token-intensive (1.5 credits per search)
Control result count via the optional
max_resultsparameter (1–10), or let the engine decideReceive structured JSON responses including query, model used, response time, and an array of results — suitable for direct LLM consumption and fact-quoting
SERPdive MCP Server
Give any MCP client real-time web search with answer-ready results. SERPdive is the AI Search API: ask a question, get the actual content of the best pages, extracted, cleaned, and sized for an LLM. On a public, replayable 1,000-question benchmark, SERPdive runs at the same speed as Tavily, feeds your LLM 20.2% fewer tokens, and wins 60.7% of decided quality duels. If you are evaluating Tavily alternatives, that benchmark is public and replayable end to end: same questions, same judge, your machine.
There is a free tier, and it has no ceiling. The krill model is free and unlimited under fair use — no card, no credits, nothing to decrement. It returns the shortest set of sentences that still answers (about 700 tokens a search, roughly half what the usual alternatives send), one request at a time, at low priority. Use it to build; switch one word to mako when you need depth and steady latency.
One tool, serpdive_search. Two ways to run it:
Hosted (recommended):
https://mcp.serpdive.com, nothing to install.Local (this package):
npx -y serpdive-mcp, stdio, zero dependencies.
Get a free API key at serpdive.com/dashboard/keys (no card required).
Hosted server
Claude Code
claude mcp add --transport http serpdive https://mcp.serpdive.com \
--header "Authorization: Bearer sd_live_YOUR_KEY"Cursor and other JSON-config clients
{
"mcpServers": {
"serpdive": {
"url": "https://mcp.serpdive.com/?key=sd_live_YOUR_KEY"
}
}
}Both https://mcp.serpdive.com/ and https://mcp.serpdive.com/mcp answer, so either URL shape works.
Related MCP server: firecrawl-mcp-server
Local server (npx)
Claude Desktop
Add to claude_desktop_config.json (Settings > Developer > Edit Config):
{
"mcpServers": {
"serpdive": {
"command": "npx",
"args": ["-y", "serpdive-mcp"],
"env": { "SERPDIVE_API_KEY": "sd_live_YOUR_KEY" }
}
}
}Claude Code
claude mcp add serpdive --env SERPDIVE_API_KEY=sd_live_YOUR_KEY -- npx -y serpdive-mcpCursor and other JSON-config clients
{
"mcpServers": {
"serpdive": {
"command": "npx",
"args": ["-y", "serpdive-mcp"],
"env": { "SERPDIVE_API_KEY": "sd_live_YOUR_KEY" }
}
}
}The tool
serpdive_search(query, model?, max_results?)
Argument | Type | Description |
| string, required | The search, in any language. Localization is automatic. |
|
|
|
| integer, 1-10 | Cap on delivered results. Omit for the engine's calibrated mix. |
The response is the raw SERPdive JSON: query, model, response_time_ms, optional extra_info, and results as [{ url, title, date?, content }]. Failed searches are never billed.
There is no answer argument here, on purpose. Over MCP the consumer is always an
LLM, which can write its own answer from the extracted content — a second,
server-side synthesis costs a round-trip on every search and buys nothing. The
API still offers answer: true for callers that are
not models.
Pricing and limits
A mako search costs 1 credit, moby 1.5. Every account gets free monthly credits, no card required. Full reference: serpdive.com/docs.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityBmaintenanceA Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.827,1454,851MIT
- AlicenseAqualityCmaintenanceA Model Context Protocol (MCP) server implementation that integrates with FireCrawl for advanced web scraping capabilities.26186,6767,221MIT

Tavily MCP Serverofficial
AlicenseAqualityDmaintenanceThis server enables AI systems to integrate with Tavily's search and data extraction tools, providing real-time web information access and domain-specific searches.441,4002,310MIT- Alicense-qualityDmaintenanceA production-ready Model Context Protocol server that brings AI-powered web search directly into development environments, providing intelligent search results with proper citations in Claude Desktop, Cursor, or any MCP-compatible client.46023MIT
Related MCP Connectors
Serper MCP — wraps the Serper Google Search API (serper.dev)
Jina AI Reader/Search MCP — turn any URL into clean LLM-ready markdown, plus web search.
The best web search for your AI Agent
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/serpdive/serpdive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server