ultimate_mcp_server vs google-ai-mode-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | google-ai-mode-mcp by PleasePrompto | |
|---|---|---|
| Stars | ★ 149 | ★ 117 |
| 30d uses | — | — |
| Score | 85 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | SearchAI / LLM ToolsDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 4 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
google-ai-mode-mcp · Summary
MCP server enabling AI-powered Google AI Mode search with citations for any LLM client.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
google-ai-mode-mcp · Use cases
- Research coding topics and best practices with official documentation examples
- Compare technical specifications and features of software products
- Research regulatory changes and legal requirements with government sources
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servergoogle-ai-mode-mcp · Install
Installation
**Claude Code:**
claude mcp add google-ai-search npx google-ai-mode-mcp@latest**Cursor, Windsurf, Zed, or other MCP clients:**
{
"mcpServers": {
"google-ai-search": {
"command": "npx",
"args": ["google-ai-mode-mcp@latest"]
}
}
}**Linux/WSL users:** If you encounter X-Server errors, use xvfb-run:
{
"mcpServers": {
"google-ai-search": {
"command": "xvfb-run",
"args": ["-a", "npx", "google-ai-mode-mcp@latest"]
}
}
}