mcp-server-chart vs turn-based-game-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | turn-based-game-mcp by github-samples | |
|---|---|---|
| Stars | ★ 4,068 | ★ 31 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
turn-based-game-mcp · Summary
A turn-based games web app with MCP-powered AI opponents featuring Tic-Tac-Toe and Rock Paper Scissors.
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
turn-based-game-mcp · Use cases
- Learning MCP implementation by studying the well-documented game server code
- Building turn-based game applications with AI opponents using MCP
- Creating educational tools to demonstrate MCP capabilities visually
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"]
}
}
}turn-based-game-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/github-samples/turn-based-game-mcp.git
cd turn-based-game-mcp- Install dependencies:
npm install- Build the shared package (required first):
npm run build --workspace=shared- Start the development servers:
**Frontend (Next.js):**
npm run dev --workspace=web**MCP Server:**
npm run dev --workspace=mcp-serverClaude Desktop Configuration
Add the following to your Claude Desktop config.json:
{
"mcpServers": {
"turn-based-games": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "./turn-based-game-mcp/mcp-server"
}
}
}