MCP Catalogs
Home

mcp-server-chart vs airbroke

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

mcp-server-chart
by antvis
airbroke
by icoretech
Stars★ 4,068★ 215
30d uses10,239
Score8449
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsMonitoringAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-server-chart · Summary

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

airbroke · Summary

Airbroke is a PostgreSQL-based error tracking service with MCP API integration for LLM/agent connections.

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

airbroke · Use cases

  • Replace commercial error tracking services like Sentry or Airbrake with a self-hosted solution
  • Integrate error reporting with AI systems through the MCP API for automated issue analysis
  • Manage application errors across multiple projects with OAuth authentication and role-based access

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"]
    }
  }
}

airbroke · Install

Install via Docker (recommended):

docker run -p 3000:3000 icoretech/airbroke:latest

Or build from source:

cp .env.dist .env
# Edit .env with your settings
yarn install
yarn build
yarn start

To use with Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "airbroke": {
      "command": "docker",
      "args": ["run", "-p", "3000:3000", "icoretech/airbroke:latest"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.