Serper
Created 5 months ago
A Model Context Protocol server that provides Google Search via Serper.
development
documentation
public
What is Serper?
An MCP server that performs Google searches using [Serper](https://serper.dev).
Documentation
Serper MCP Server
Available Tools
google_searchgoogle_search_imagesgoogle_search_videosgoogle_search_placesgoogle_search_mapsgoogle_search_reviewsgoogle_search_newsgoogle_search_shoppinggoogle_search_lensgoogle_search_scholargoogle_search_parentsgoogle_search_autocompletewebpage_scrape
Usage# Installing via Smithery
To install Serper MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @garylab/serper-mcp-server --client claude
Using uv (recommended)
- Make sure you had installed
uvon your os system. - In your MCP client code configuration or Claude settings (file
claude_desktop_config.json) addserpermcp server:
{
"mcpServers": {
"serper": {
"command": "uvx",
"args": ["serper-mcp-server"],
"env": { "SERPER_API_KEY": "" }
}
}
}
Using pip for project
- Add
serper-mcp-serverto your MCP client coderequirements.txtfile.
serper-mcp-server
- Install the dependencies.
pip install -r requirements.txt
- Add the configuration for you client:
{
"mcpServers": {
"serper": {
"command": "python3",
"args": ["-m", "serper_mcp_server"],
"env": { "SERPER_API_KEY": "" }
}
}
}
Using pip for globally usage
- Make sure the
piporpip3is in your os system.
pip install serper-mcp-server
- MCP client code configuration or Claude settings, add
serpermcp server:
{
"mcpServers": {
"serper": {
"command": "python3",
"args": ["serper-mcp-server"],
"env": { "SERPER_API_KEY": "" }
}
}
}
Debugging
You can use the MCP inspector to debug the server.
For uvx installations:
npx @modelcontextprotocol/inspector uvx serper-mcp-server
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/serper
npx @modelcontextprotocol/inspector uv run serper-mcp-server -e SERPER_API_KEY=
Server Config
{
"mcpServers": {
"serper-server": {
"command": "npx",
"args": [
"serper"
]
}
}
}
Links & Status
Project Info
Hosted
Featured
Created At:
Jul 02, 2025
Updated At:
Aug 07, 2025
Author:
Gary Meng
Category:
community
License:
MIT License
Tags:
development
documentation
public