MCP Catalogs
Home

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
Score3885
Official
Categories
AI / LLM ToolsDeveloper ToolsCommunication
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit12 mo ago2 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

  1. Clone the repository:
git clone https://github.com/arjunprabhulal/adk-python-mcp-client.git
cd adk-python-mcp-client
  1. Set up environment:
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -r requirements.txt
  1. Configure environment variables:
cp .env.example .env
# Edit .env with your API keys
  1. Run the client:
python client.py

Claude Desktop configuration (if applicable):

{
  "mcpServers": {
    "adk-python-mcp": {
      "command": "python",
      "args": ["path/to/client.py"]
    }
  }
}

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.