mcp-server-chart vs mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server by finmap-org | |
|---|---|---|
| Stars | ★ 4,068 | ★ 10 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server · Summary
A financial data MCP server providing stock exchange data from multiple countries with visualization capabilities.
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
mcp-server · Use cases
- Financial analysis and research
- Market monitoring and investment decisions
- Comparative analysis across different stock exchanges
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor 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"]
}
}
}mcp-server · Install
Option 1: Remote Server (Hosted)
Connect to the hosted MCP server without any installation:
**Server URL**: https://mcp.finmap.org
**Claude Desktop Configuration**:
{
"mcpServers": {
"finmap": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.finmap.org"]
}
}
}Option 2: Local Package (npm)
Install and run locally for better performance and offline access:
# Install globally
npm install -g finmap-mcp
# Or use directly
npx finmap-mcp**Claude Desktop Configuration**:
{
"mcpServers": {
"finmap": {
"command": "npx",
"args": ["-y", "finmap-mcp"]
}
}
}