MCP Catalogs
Home

ultimate_mcp_server vs zerodha-mcp

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
zerodha-mcp
by mtwn105
Stars★ 149★ 30
30d uses
Score8535
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
FinanceAI / LLM ToolsProductivity
LanguagePythonPython
Last commit2 mo ago13 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.

zerodha-mcp · Summary

A Python-based MCP server for Zerodha trading with interactive chat interface and multi-agent support.

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

zerodha-mcp · Use cases

  • Building AI-powered trading assistants for Zerodha users
  • Automating trading operations through natural language commands
  • Creating web-based trading interfaces with AI capabilities

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

zerodha-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/mtwn105/zerodha-mcp-server-client.git
cd zerodha-mcp-server-client
  1. Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up environment variables:
cp .env.example .env
# Edit .env with your credentials

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "zerodha": {
      "command": "python",
      "args": ["/path/to/zerodha-mcp-server-client/server.py"],
      "env": {
        "ZERODHA_API_KEY": "your_api_key",
        "ZERODHA_API_SECRET": "your_api_secret",
        "PORT": "8001"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.