Serper MCP Server

Serper MCP server provides Google Search via the Serper API — 13 specialised tools including web, images, news, scholar, patents, shopping, places, maps, and Lens search for LLM agents.

June 10, 2026
MCP ServerSearch & RetrievalSerper MCP Server
GitHub starsPyPI version

Overview

The Serper MCP Server connects AI assistants to Google Search via the Serper API — the fastest Google Search API for LLMs. With 13 specialised tools covering web, images, news, scholar, patents, shopping, places, maps, and even Google Lens, it provides the most comprehensive Google SERP access available through MCP.

Community Server:

Community-maintained by garylab. MIT licensed. Available on PyPI and Smithery.

Key Features

🔍

13 Specialised Search Types

Web, images, videos, news, scholar, patents, shopping, places, maps, reviews, Lens, and autocomplete

🌍

Geolocation Support

Country and language filtering for localised search results with region-specific data

📰

News & Scholar Search

Access Google News and Google Scholar results with time-range filtering and citation data

🛍️

Shopping & Reviews

Search Google Shopping for products with pricing and query local business reviews

📍

Maps & Places

Google Maps and Places search with location coordinates and business data

📄

Web Scraping

Extract full page content from search result URLs for deeper analysis

Available Tools

Quick Reference

ToolPurposeCategory
google_searchGeneral Google web search with full parameter controlSearch
google_search_imagesSearch Google Images with size, colour, and type filtersImages
google_search_videosSearch Google Videos with duration and quality filtersVideos
google_search_newsSearch Google News with time range and source filteringNews
google_search_scholarSearch Google Scholar with citation and publication dataAcademic
google_search_patentsSearch Google Patents with filing status and assignee filtersPatents
google_search_shoppingSearch Google Shopping for products with pricing dataShopping
google_search_placesSearch Google Places for businesses and landmarksLocation
google_search_mapsSearch Google Maps with geographic coordinatesMaps
google_search_reviewsRetrieve local business reviews and ratingsReviews
google_search_lensReverse image search via Google LensVisual
google_search_autocompleteGet Google search query autocomplete suggestionsQuery
webpage_scrapeExtract full content from a webpage URLExtraction

Detailed Usage

google_search

Perform a Google web search with location, language, and result count control. Returns organic results with titles, snippets, and links.

{
  "query": "best open-source LLM for code generation 2026",
  "num": 10,
  "gl": "us",
  "hl": "en"
}
google_search_news

Search Google News with time period filtering (past hour, day, week, month, year).

{
  "query": "AI regulation developments",
  "tbs": "qdr:w",
  "num": 10,
  "gl": "us"
}
google_search_scholar

Search Google Scholar for academic papers with citation counts and publication details.

{
  "query": "attention is all you need",
  "num": 5
}
google_search_places

Search for businesses, landmarks, and points of interest with address and rating data.

{
  "query": "best coffee shops in San Francisco",
  "num": 5,
  "gl": "us"
}
webpage_scrape

Extract clean, readable content from any webpage URL. Useful for reading articles found via search results.

{
  "url": "https://example.com/article",
  "includeMarkdown": true
}

Installation

{
  "mcpServers": {
    "serper": {
      "command": "uvx",
      "args": ["serper-mcp-server"],
      "env": {
        "SERPER_API_KEY": "your-serper-api-key"
      }
    }
  }
}

API Key Required:

Get a Serper API key from serper.dev. Free tier includes 2,500 searches/month. Paid plans start at $50/month for 50,000 searches.

Comparison: Serper vs Other Search MCPs

FeatureSerperTavilyBrave SearchGoogle Search (direct)
ProviderGoogle (via Serper API)Tavily (AI-optimised)Brave IndexGoogle Programmable Search
Search Types12 specialised (web, images, video, news, scholar, patents, shopping, places, maps, reviews, Lens, autocomplete)Web search + extractionWeb + imagesWeb only
AI OptimisationFast, structured SERP dataAI-summarised resultsPrivacy-focused indexRaw Google results
Scholar/PatentsYesNoNoNo
Shopping/MapsYesNoNoNo
Google LensYesNoNoNo
ScrapingBuilt-in webpage scrapeBuilt-in extractNoNo

Security

  • API key authentication for all requests
  • Key scoped to Serper API — no Google account access required
  • All traffic encrypted via HTTPS
  • Self-hosted or remote — data stays between you and Serper

Sources