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 paperinvest | |
|---|---|---|
| Stars | ★ 4,068 | ★ 21 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 8 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
Official MCP server for Paper's trading platform enabling AI assistants to interact with trading 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
mcp-server · Use cases
- AI assistants helping traders analyze market data and execute paper trades
- Portfolio management through conversational interfaces with AI
- Automated trading strategy testing in a risk-free paper trading environment
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
Installation
# Global install (recommended for CLI usage)
npm i -g @paperinvest/mcp-server
# Or run with npx
npx @paperinvest/mcp-server --helpNode.js 16+ recommended.
Configuration
Set your Paper API credentials via environment variables (shell or .env).
export PAPER_API_KEY=your_api_key
# Optional override
export PAPER_API_BASE_URL=https://api.paperinvest.ioClaude Desktop Configuration
Add the following to your Claude Desktop config file:
{
"mcpServers": {
"paper": {
"command": "paper-mcp-server",
"env": {
"PAPER_API_KEY": "your_api_key"
}
}
}
}