Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

mcp-google-cse

MCP.Pizza Chef: Richard-Weiss

The mcp-google-cse is a Model Context Protocol server that enables LLMs to perform searches using Google's Custom Search Engine (CSE). It returns search result metadata without the full content, allowing integration with other MCP servers like mcp-server-fetch for content extraction. It supports up to 100 free searches daily without billing and facilitates advanced workflows such as deep search and tool chaining.

Use This MCP server To

Perform Google CSE searches from within LLM workflows Retrieve search result metadata for query refinement Combine with content fetch servers to extract webpage content Enable multi-step tool chaining for deep web search Integrate Google search results into AI-powered applications Automate information retrieval using custom search queries Support LLMs with real-time web search context Use search results to enhance knowledge bases or chatbots

README

Google Custom Search Engine MCP Server

A Model Context Protocol server that provides search capabilities using a CSE (custom search engine). This server enables LLMs to provide a regular google search term and returns the found search results.

The tool only returns the results itself and not the content, the tool should be combined with other servers like mcp-server-fetch to extract the content from the search results. You may also combine it with other tools to enable some kind of "deep search" or tool chaining in general.

The free quota is 100 searches (1 tool call == 1 search) per day, if you don't want to set up billing and this is insufficient for your use case, you should consider using another server.

Google Custom Search Engine Server MCP server smithery badge

Available Tools

  • google_search - Searches the custom search engine using the search term and returns a list of results containing the title, link and snippet of each result.
    • search_term (string, required): The search term to search for, equaling the query parameter q in the usual Google search.

Environment variables

  • API_KEY (required): The API key for the custom search engine.
  • ENGINE_ID (required): The engine ID for the custom search engine.
  • SERVICE_NAME (required/optional): The name of the service, leave empty if you haven't changed the name (customsearch).
  • COUNTRY_REGION (optional): Restricts search results to documents originating in a particular country. See Country Parameter Values for valid values.
  • GEOLOCATION (optional, default "us"): The geolocation of the end-user performing the search. See Geolocation Parameter Values for valid values.
  • RESULT_LANGUAGE (optional, default "lang_en"): The language of the search results. See CSE Query parameters, lr for valid values.
  • RESULT_NUM (optional, default 10): The number of search results to return. Range from 1-10.

CSE Setup

Creating a custom search engine is comparatively easy, completely free and can be done in under 5 minutes.

  1. Go to https://console.cloud.google.com/ and create a new project. Call it "Claude CSE" for example.
  2. Select the project and search for "Custom Search API" in the search bar.
  3. Click on the search result and click on "Enable".
  4. Click on the Credentials tab and create a new API key.
  5. Go to https://programmablesearchengine.google.com to create a new custom search engine.
  6. Create a new search engine and give it any name, the name doesn't correlate to SERVICE_NAME.
  7. Select "Search the entire web" if you want a normal Google Search experience.
  8. Click on "Create" and copy the engine id from the js code, or hit customize and get it from the overview.
  9. You can optionally customize the search engine to your liking.

With the default quota, you will get 100 searches per day for free. A tool call only costs 1 search, even if you get 10 results for example.

Installation

Using uv (recommended)

When using uv no specific installation is needed. We will use uvx to directly run mcp-google-cse.

Using PIP

Alternatively you can install mcp-google-cse via pip:

pip install mcp-google-cse

After installation, you can run it as a script using:

python -m mcp-google-cse

Installing via Smithery

To install Google Custom Search Engine for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @Richard-Weiss/mcp-google-cse --client claude

Configuration

Configure for Claude app

Add to your claude_desktop_config.json:

Using uvx (use this if you don't know which one to choose)
"mcp-google-cse": {
    "command": "uvx",
    "args": ["mcp-google-cse"],
    "env": {
        "API_KEY": "",
        "ENGINE_ID": ""
    }
}
Using pip installation
"mcp-google-cse": {
    "command": "python",
    "args": ["-m", "mcp-google-cse"],
    "env": {
        "API_KEY": "",
        "ENGINE_ID": ""
    }
}
Running locally
    "mcp-google-cse": {
      "command": "uv",
      "args": [
        "--directory",
        "{{Path to the cloned repo",
        "run",
        "mcp-google-cse"
      ],
      "env": {
        "API_KEY": "",
        "ENGINE_ID": ""
      }
    }

Example result

google_search("What is MCP after:2024-11-01") Result:

[
    {
        "title": "Can someone explain MCP to me? How are you using it? And what ...",
        "link": "https://www.reddit.com/r/ClaudeAI/comments/1h55zxd/can_someone_explain_mcp_to_me_how_are_you_using/",
        "snippet": "Dec 2, 2024 ... Comments Section ... MCP essentially allows you to give Claude access to various external systems. This can be files on your computer, an API, a browser, a ..."
    },
    {
        "title": "Introducing the Model Context Protocol \\ Anthropic",
        "link": "https://www.anthropic.com/news/model-context-protocol",
        "snippet": "Nov 25, 2024 ... The Model Context Protocol (MCP) is an open standard for connecting AI assistants to the systems where data lives, including content repositories, ..."
    },
    {
        "title": "3.5 Sonnet + MCP + Aider = Complete Game Changer : r ...",
        "link": "https://www.reddit.com/r/ChatGPTCoding/comments/1hwn6qd/35_sonnet_mcp_aider_complete_game_changer/",
        "snippet": "Jan 8, 2025 ... Really cool stuff. For those out of the loop here are some MCP servers. You can give your Claude chat (in the desktop version, or in a tool like Cline) ..."
    },
    {
        "title": "Announcing Spring AI MCP: A Java SDK for the Model Context ...",
        "link": "https://spring.io/blog/2024/12/11/spring-ai-mcp-announcement",
        "snippet": "Dec 11, 2024 ... This SDK will enable Java developers to easily connect with an expanding array of AI models and tools while maintaining consistent, reliable integration ..."
    },
    {
        "title": "Implementing a MCP server in Quarkus - Quarkus",
        "link": "https://quarkus.io/blog/mcp-server/",
        "snippet": "6 days ago ... The Model Context Protocol (MCP) is an emerging standard that enables AI models to safely interact with external tools and resources. In this tutorial, I'll ..."
    },
    {
        "title": "mark3labs/mcp-go: A Go implementation of the Model ... - GitHub",
        "link": "https://github.com/mark3labs/mcp-go",
        "snippet": "Dec 18, 2024 ... A Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools."
    },
    {
        "title": "MCP enables Claude to Build, Run and Test Web Apps by Looking ...",
        "link": "https://wonderwhy-er.medium.com/mcp-enable-claude-to-build-run-and-test-web-apps-using-screenshots-3ae06aea6c4a",
        "snippet": "Dec 18, 2024 ... How to Replicate My Experiment on Your Machine. If you're ready to dive into setting up MCP for Claude, follow these steps: ... 2. Download the Project: ... 3."
    },
    {
        "title": "MCP definition and meaning | Collins English Dictionary",
        "link": "https://www.collinsdictionary.com/dictionary/english/mcp",
        "snippet": "2 days ago ... 2 meanings: male chauvinist pig → informal, derogatory a man who exhibits male chauvinism Abbreviation: MCP.... Click for more definitions."
    },
    {
        "title": "What is Anthropic's New MCP Standard and How Can It Improve ...",
        "link": "https://dappier.medium.com/what-is-anthropics-new-mcp-standard-and-how-can-it-improve-your-ai-agent-be6f6c72eb6a",
        "snippet": "Nov 26, 2024 ... Anthropic has released a new protocol, MCP, for connecting AI agents to data sets. This blog explores when and why developers might use MCP to improve their ..."
    },
    {
        "title": "Mostafa Gharib on LinkedIn: What is MCP and how it works",
        "link": "https://www.linkedin.com/posts/mostafa-gharib_what-is-mcp-and-how-it-works-activity-7274301560594026497-p_yq",
        "snippet": "Dec 15, 2024 ... ... MCP Host can use. (Bonus: SDKs in Python and TypeScript make it easy to build these servers!) 2️⃣ MCP Clients These interact with MCP Servers via the protocol."
    }
]

mcp-google-cse FAQ

How does mcp-google-cse handle search results?
It returns search result metadata only, not the full page content.
Can I extract full content from search results?
Yes, by combining mcp-google-cse with servers like mcp-server-fetch.
What is the free usage limit?
The server allows 100 free searches per day without billing setup.
How do I increase the search quota?
Set up billing with Google CSE or use alternative MCP servers.
Is this server compatible with other MCP tools?
Yes, it supports tool chaining and integration with other MCP servers.
What kind of queries can I run?
Any search query supported by Google Custom Search Engine can be used.
Does it support deep search workflows?
Yes, when combined with other tools, it enables multi-step deep search.
Is the server provider-agnostic?
It specifically uses Google CSE but can be integrated in provider-agnostic MCP workflows.