mcp-server-chart vs Gearboy
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Gearboy by drhelius | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,130 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | C++ |
| 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.
Gearboy · Summary
Game Boy emulator with embedded MCP server for AI-assisted debugging and ROM analysis.
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
Gearboy · Use cases
- AI-assisted debugging of Game Boy games using memory inspection and breakpoint tools
- ROM reverse engineering with AI through disassembly and code tracing features
- Game cheat creation and ROM modification using memory search and analysis capabilities
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"]
}
}
}Gearboy · Install
Installation
Gearboy can be downloaded as pre-built binaries for Windows, macOS, and Linux from the [releases page](https://github.com/drhelius/Gearboy/releases).
To use the MCP server:
- Start Gearboy with one of these options:
- --mcp-stdio - Auto-start MCP server with stdio transport - --mcp-http - Auto-start MCP server with HTTP transport - --mcp-http-port N - Specify HTTP port (default: 7777)
- For Claude Desktop integration, add the following to your
claude_desktop_config.json:
{
"mcpServers": {
"gearboy": {
"command": "path/to/gearboy",
"args": ["--mcp-stdio"]
}
}
}Alternatively, the --headless option can be used to run without GUI when using MCP.