MCP Server for web search via Gemini's grounding API
Project description
MCP Search Server
A Model Context Protocol (MCP) server that provides web search capabilities via Gemini's grounding API.
Features
- 🔍 Real-time web search powered by Google Gemini
- ⚡ Built-in caching (5 min TTL)
- 🎯 Structured search results (Title + URL + Summary)
- 🌍 Multi-language support
Installation
pip install mcp-search-server
Configuration
Set environment variables:
export MCP_SEARCH_URL="http://localhost:8045/v1/messages"
export MCP_SEARCH_API_KEY="your-api-key"
export MCP_SEARCH_MODEL="gemini-3-flash" # or gemini-3-pro-high
export MCP_SEARCH_CACHE_TTL="300" # seconds
Usage
As MCP Server (with Zed, Claude Desktop, etc.)
{
"mcpServers": {
"mcp-search": {
"command": "python",
"args": ["-m", "mcp_search"],
"env": {
"MCP_SEARCH_URL": "http://localhost:8045/v1/messages",
"MCP_SEARCH_API_KEY": "your-api-key",
"MCP_SEARCH_MODEL": "gemini-3-flash"
}
}
}
}
As Python Library
import asyncio
from mcp_search import do_search
result = asyncio.run(do_search(
query="latest AI news",
max_results=5,
model="gemini-3-flash"
))
print(result)
Tool Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | ✅ | Search keywords |
max_results |
integer | ❌ | Number of results (default: 8) |
model |
string | ❌ | Model ID (default: gemini-3-flash) |
Requirements
- Python 3.10+
- Antigravity Manager running locally
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_gemini_search-0.2.1.tar.gz.
File metadata
- Download URL: mcp_gemini_search-0.2.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd58cb11afaaecd6c57f3f566cd8094dc5e51e55f82855a1ff49944c97a613a6
|
|
| MD5 |
e3954ea58b896e05f7eb57d1d62d5759
|
|
| BLAKE2b-256 |
c97c0e4e7d36116112f84eb1cb8ec739d9a8a1a9ef260e7f536d53b8a805d2e6
|
File details
Details for the file mcp_gemini_search-0.2.1-py3-none-any.whl.
File metadata
- Download URL: mcp_gemini_search-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84b755f408cdfd205c50d15b18c8874dfcf0b6b81ab2a1abfbb977714d823584
|
|
| MD5 |
cdd5a73864625757d3e4b541d988fd9c
|
|
| BLAKE2b-256 |
69f9f361130dae4b5da47e124a44df9a83ce1ec3506f53b7d3665c6c03ca94b3
|