MCP Catalogs
Home

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 uses10,239
Score8441
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
FinanceDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month7 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-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"]
    }
  }
}

IB_MCP · Install

IB_MCP Installation

Docker Setup

  1. Clone the repository:
git clone https://github.com/rcontesti/IB_MCP.git
cd IB_MCP
cp .env.example .env
  1. Build and run the containers:
docker compose up --build -d
  1. 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/"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.