adk-python-mcp-client vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
adk-python-mcp-client by arjunprabhulal | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 34 | ★ 149 |
| 30d uses | — | — |
| Score | 38 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsCommunication | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 12 mo ago | 2 mo ago |
adk-python-mcp-client · Summary
Python implementation of ADK as an MCP client for flight search with Gemini 2 LLM.
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.
adk-python-mcp-client · Use cases
- Building flight search assistants using Google's Gemini model
- Implementing MCP client with ADK for external API integration
- Creating stateful AI agents with dynamic tool discovery
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
adk-python-mcp-client · Install
Installation
- Clone the repository:
git clone https://github.com/arjunprabhulal/adk-python-mcp-client.git
cd adk-python-mcp-client- Set up environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt- Configure environment variables:
cp .env.example .env
# Edit .env with your API keys- Run the client:
python client.pyClaude Desktop configuration (if applicable):
{
"mcpServers": {
"adk-python-mcp": {
"command": "python",
"args": ["path/to/client.py"]
}
}
}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_server