Integrations
Provides Google Search functionality via Serper API, allowing access to search results with support for customizing location, language, time period, and number of results.
Serper MCP Server
A Model Context Protocol server that provides Google Search via Serper. This server enables LLMs to get search result information from Google.
Available Tools
google_search
- Get the result of the search.- Required arguments:
q
(string): The query to search for
- Optional arguments:
gl
(string): The country to search in, e.g. us, uk, ca, au, etc.location
(string): The location to search in, e.g. San Francisco, CA, USAhl
(string): The language to search in, e.g. en, es, fr, de, etc.tbs
(string): The time period to search in, e.g. d, w, m, ynum
(integer): The number of results to return, max is 100 (default: 10)page
(integer): The page number to return, first page is 1 (default: 1)
- Required arguments:
Usage
Using uv
(recommended)
- Make sure you had installed
uv
on your os system. - In your MCP client code configuration or Claude settings (file
claude_desktop_config.json
) addserper
mcp server:Copyuv
will download mcp server automatically usinguvx
from pypi.org and apply to your MCP client.
Using pip
for project
- Add
serper-mcp-server
to your MCP client coderequirements.txt
file.Copy - Install the dependencies.Copy
- Add the configuration for you client:Copy
Using pip
for globally usage
- Make sure the
pip
orpip3
is in your os system.Copy - MCP client code configuration or Claude settings, add
serper
mcp server:Copy
Debugging
You can use the MCP inspector to debug the server. For uvx
installations:
Or if you've installed the package in a specific directory or are developing on it:
License
serper-mcp-server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
This server cannot be installed
A Model Context Protocol server that enables LLMs to perform Google searches via the Serper API, allowing models to retrieve current information from the web.