MCP Catalogs
Home

ultimate_mcp_server vs TWSEMCPServer

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

ultimate_mcp_server
by Dicklesworthstone
TWSEMCPServer
by twjackysu
Stars★ 149★ 90
30d uses
Score8548
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
FinanceAI / LLM ToolsDeveloper Tools
LanguagePythonPython
Last commit2 mo agothis month

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.

TWSEMCPServer · Summary

Comprehensive MCP server for Taiwan stock market data with real-time quotes and financial analysis.

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

TWSEMCPServer · Use cases

  • Analyze stock trends of specific Taiwan companies
  • Track foreign investment patterns in Taiwan markets
  • Identify high-dividend stocks and upcoming ex-dividend dates
  • Monitor market hotspots and unusual trading volumes
  • Screen value stocks with good ESG performance

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

TWSEMCPServer · Install

Installation

Online Usage (Recommended)

{
  "twstockmcpserver": {
    "transport": "streamable_http",
    "url": "https://TW-Stock-MCP-Server.fastmcp.app/mcp"
  }
}

Docker Usage (stdio, no self-hosting)

{
  "twstockmcpserver": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "--pull=always",
      "-e",
      "MCP_STDIO=1",
      "ghcr.io/twjackysu/twsemcpserver:latest"
    ]
  }
}

Docker Usage (HTTP, self-hosting)

docker run -d -p 8000:8000 -e PORT=8000 ghcr.io/twjackysu/twsemcpserver:latest

Local Installation

git clone https://github.com/twjackysu/TWStockMCPServer.git
cd TWStockMCPServer
uv sync && uv run fastmcp dev server.py

Claude Desktop Configuration

Add to config.json:

{
  "mcpServers": {
    "twstockmcpserver": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--pull=always",
        "-e",
        "MCP_STDIO=1",
        "ghcr.io/twjackysu/twsemcpserver:latest"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.