MCP Catalogs
Home

mcp-server-chart vs TWSEMCPServer

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

mcp-server-chart
by antvis
TWSEMCPServer
by twjackysu
Stars★ 4,068★ 90
30d uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

TWSEMCPServer · Summary

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

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

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

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

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.