MCP Catalogs
Home

mcp-server-chart vs FinanceMCP

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

mcp-server-chart
by antvis
FinanceMCP
by guangxiangdebizi
Stars★ 4,068★ 574
30d uses10,239
Score8453
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptJavaScript
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.

FinanceMCP · Summary

Comprehensive financial data MCP server providing real-time stock, crypto, macro-economic data and technical indicators through Tushare and Binance APIs.

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

FinanceMCP · Use cases

  • Technical analysis of stocks with multiple indicators like MACD, RSI, and BOLL bands
  • Comprehensive company evaluation across multiple markets (A-shares, HK, US)
  • Real-time monitoring of fund flows, sector performance, and market sentiment

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"]
    }
  }
}

FinanceMCP · Install

Installation Options

Option 1: Public Cloud Service (Recommended)

Use the pre-configured cloud service with your own Tushare token:

{
  "mcpServers": {
    "finance-mcp": {
      "disabled": false,
      "timeout": 600,
      "type": "streamableHttp",
      "url": "https://finvestai.top/mcp",
      "headers": {
        "X-Tushare-Token": "your_tushare_token_here"
      }
    }
  }
}

Option 2: Local Installation via npm

npm install -g finance-mcp

Then configure Claude Desktop:

{
  "mcpServers": {
    "finance-mcp": {
      "type": "stdio",
      "command": "finance-mcp",
      "env": {
        "TUSHARE_TOKEN": "your_tushare_token_here"
      }
    }
  }
}

For more deployment options, see the [README](https://github.com/guangxiangdebizi/FinanceMCP).

Comparison generated from public README + GitHub signals. Last updated automatically.