MCP Catalogs
Home

alpaca-mcp-server vs ultimate_mcp_server

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

alpaca-mcp-server
by alpacahq
ultimate_mcp_server
by Dicklesworthstone
Stars★ 736★ 149
30d uses
Score5385
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit1 mo ago2 mo ago

alpaca-mcp-server · Summary

Alpaca's official MCP server enables natural language trading of stocks, ETFs, crypto, and options through AI assistants.

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.

alpaca-mcp-server · Use cases

  • Automate stock and crypto trading through natural language commands in AI assistants
  • Build and test investment strategies using LLM-powered tools
  • Access real-time market data and portfolio information directly within development environments

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

alpaca-mcp-server · Install

Installation

Prerequisites

  • Python 3.10+
  • uv
  • Alpaca Trading API keys
  • MCP client (Claude Desktop, Cursor, VS Code, etc.)

Setup (Claude Desktop)

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "alpaca": {
      "command": "uvx",
      "args": ["alpaca-mcp-server"],
      "env": {
        "ALPACA_API_KEY": "your_alpaca_api_key",
        "ALPACA_SECRET_KEY": "your_alpaca_secret_key"
      }
    }
  }
}

Setup (Cursor)

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "alpaca": {
      "command": "uvx",
      "args": ["alpaca-mcp-server"],
      "env": {
        "ALPACA_API_KEY": "your_alpaca_api_key",
        "ALPACA_SECRET_KEY": "your_alpaca_secret_key"
      }
    }
  }
}

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.