Show HN: SerpApi MCP Server

https://news.ycombinator.com/rss Hits: 5
Summary

SerpApi MCP Server A Model Context Protocol (MCP) server implementation that integrates with SerpApi for comprehensive search engine results and data extraction. Features Multi-Engine Search : Google, Bing, Yahoo, DuckDuckGo, YouTube, eBay, and more : Google, Bing, Yahoo, DuckDuckGo, YouTube, eBay, and more Real-time Weather Data : Location-based weather with forecasts via search queries : Location-based weather with forecasts via search queries Stock Market Data : Company financials and market data through search integration : Company financials and market data through search integration Dynamic Result Processing : Automatically detects and formats different result types : Automatically detects and formats different result types Flexible Response Modes : Complete or compact JSON responses : Complete or compact JSON responses JSON Responses: Structured JSON output with complete or compact modes Quick Start SerpApi MCP Server is available as a hosted service at mcp.serpapi.com. In order to connect to it, you need to provide an API key. You can find your API key on your SerpApi dashboard. You can configure Claude Desktop to use the hosted server: { "mcpServers" : { "serpapi" : { "url" : " https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp " } } } git clone https://github.com/serpapi/serpapi-mcp.git cd serpapi-mcp uv sync && uv run src/server.py Configure Claude Desktop: { "mcpServers" : { "serpapi" : { "url" : " http://localhost:8000/YOUR_SERPAPI_API_KEY/mcp " } } } Get your API key: serpapi.com/manage-api-key Authentication Two methods are supported: Path-based : /YOUR_API_KEY/mcp (recommended) : (recommended) Header-based: Authorization: Bearer YOUR_API_KEY Examples: # Path-based curl " https://mcp.serpapi.com/your_key/mcp " -d ' ... ' # Header-based curl " https://mcp.serpapi.com/mcp " -H " Authorization: Bearer your_key " -d ' ... ' Search Tool The MCP server has one main Search Tool that supports all SerpApi engines and result types. You can find all available para...

First seen: 2025-12-05 19:17

Last seen: 2025-12-05 23:17