MCP Catalogs
Home

mcp-aktools vs mcp-server-chart

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

mcp-aktools
by aahl
mcp-server-chart
by antvis
Stars★ 381★ 4,068
30d uses10,239
Score5084
Official
Categories
FinanceAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit2 mo agothis month

mcp-aktools · Summary

MCP server providing stock and cryptocurrency data query and analysis tools.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

mcp-aktools · Use cases

  • Financial analysts can retrieve stock data and market information to inform investment decisions
  • Developers building applications requiring real-time stock and crypto market data
  • Individual investors monitoring their portfolio performance and getting market insights

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-aktools · Install

Installation

Using uvx

Add to your MCP configuration:

{
  "mcpServers": {
    "aktools": {
      "command": "uvx",
      "args": ["mcp-aktools"],
      "env": {
        "OKX_BASE_URL": "https://okx.4url.cn",
        "BINANCE_BASE_URL": "https://bian.4url.cn",
        "NEWSNOW_BASE_URL": "https://newsnow.busiyi.world",
        "NEWSNOW_CHANNELS": "wallstreetcn-quick,cls-telegraph,jin10"
      }
    }
  }
}
Using Docker
mkdir /opt/mcp-aktools
cd /opt/mcp-aktools
wget https://raw.githubusercontent.com/aahl/mcp-aktools/refs/heads/main/docker-compose.yml
docker-compose up -d

Then configure with:

{
  "mcpServers": {
    "aktools": {
      "url": "http://0.0.0.0:8808/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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.