mcp-server-chart vs IB_MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | IB_MCP by rcontesti | |
|---|---|---|
| Stars | ★ 4,068 | ★ 124 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
IB_MCP · Summary
An MCP server that provides Interactive Brokers Web API access through Model Context Protocol for trading operations.
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
IB_MCP · Use cases
- Building AI-powered trading assistants that can execute trades through IBKR
- Portfolio monitoring systems using MCP tools to retrieve account information
- Automated trading strategies with risk management integrated through MCP
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"]
}
}
}IB_MCP · Install
IB_MCP Installation
Docker Setup
- Clone the repository:
git clone https://github.com/rcontesti/IB_MCP.git
cd IB_MCP
cp .env.example .env- Build and run the containers:
docker compose up --build -d- Authenticate with your IB account by accessing
https://{GATEWAY_BASE_URL}:{GATEWAY_PORT}
VS Code Configuration
Add to your settings.json:
{
"mcp": {
"servers": {
"ib-web": {
"type": "http",
"url": "http://localhost:5002/mcp/"
}
}
}
}Alternatively, create .vscode/mcp.json:
{
"servers": {
"ib-mcp-server": {
"type": "http",
"url": "http://localhost:5002/mcp/"
}
}
}