mcp-server-chart vs streamdeck-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | streamdeck-mcp by verygoodplugins | |
|---|---|---|
| Stars | ★ 4,068 | ★ 13 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsMedia |
| Language | TypeScript | Python |
| 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.
streamdeck-mcp · Summary
MCP server for Elgato Stream Deck control, letting AI create custom profiles with buttons, icons, and scripts.
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
streamdeck-mcp · Use cases
- Create custom Slack control boards with channel jump buttons and status toggles
- Build themed Home Assistant dashboards for specific areas
- Generate OBS control panels based on actual scenes and audio inputs
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"]
}
}
}streamdeck-mcp · Install
Installation
Install with uvx and configure in your MCP client:
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["streamdeck-mcp"]
}
}
}Claude Code
claude mcp add streamdeck -- uvx streamdeck-mcpOther clients
Add to your MCP configuration:
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["streamdeck-mcp"]
}
}
}