Best for
- Claude Code users who need real-time search capabilities
- Developers looking to reduce LLM hallucinations and get up-to-date information
- Researchers needing web scraping and site mapping features
This project provides a dual-engine search (Grok + Tavily) with rich features and easy installation, suitable for Claude Code users. Strengths include intelligent search and automatic fallback mechanisms, but it relies on external APIs and requires key configuration.
Grok Search MCP is an MCP server built on FastMCP with a dual-engine architecture: Grok handles AI-driven smart search, while Tavily handles high-fidelity web scraping and site mapping. Together, they provide comprehensive real-time web access for LLM clients like Claude Code and Cherry Studio.
{
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/GuDaStudio/GrokSearch@grok-with-tavily",
"grok-search"
],
"env": {
"GROK_API_URL": "https://your-api-endpoint.com/v1",
"GROK_API_KEY": "your-grok-api-key",
"TAVILY_API_KEY": "tvly-your-tavily-key",
"TAVILY_API_URL": "https://api.tavily.com"
}
}