MCP Catalogs
Home

mcp-server-chart vs bgg-mcp

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

mcp-server-chart
by antvis
bgg-mcp
by kkjdaniel
Stars★ 4,068★ 40
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
gamesSearchAI / LLM Tools
LanguageTypeScriptGo
Last committhis month1 mo ago

mcp-server-chart · Summary

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

bgg-mcp · Summary

BGG MCP provides BoardGameGeek API access through MCP with tools for searching, collections, pricing, and recommendations.

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

bgg-mcp · Use cases

  • Board game enthusiasts researching game details and prices
  • Users analyzing their game collections and finding trading opportunities
  • Game masters seeking recommendations similar to specific titles

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

bgg-mcp · Install

Installation

Docker (Recommended)

"bgg": {
    "command": "docker",
    "args": ["run", "-i", "--rm",
        "-e", "BGG_API_KEY",
        "-e", "BGG_USERNAME",
        "kdaniel/bgg-mcp"
    ],
    "env": {
        "BGG_API_KEY": "your_api_key_here",
        "BGG_USERNAME": "your_bgg_username"
    }
}

Manual Setup

  1. Install Go from [go.dev/doc/install](https://go.dev/doc/install)
  2. Build the application:
make build
  1. Add to your MCP config:
"bgg": {
    "command": "path/to/build/bgg-mcp",
    "args": ["-mode", "stdio"]
}
Comparison generated from public README + GitHub signals. Last updated automatically.