mcp-server-chart vs interactive-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | interactive-mcp by ttommyth | |
|---|---|---|
| Stars | ★ 4,068 | ★ 345 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
interactive-mcp · Summary
interactive-mcp is a local, cross-platform MCP server that enables interactive communication between AI agents and users through prompts, notifications, and persistent chat sessions.
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
interactive-mcp · Use cases
- Interactive setup or configuration processes requiring user confirmation
- Gathering feedback during code generation or modification
- Clarifying instructions in pair programming scenarios
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"]
}
}
}interactive-mcp · Install
Installation
For Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"interactive": {
"command": "npx",
"args": ["-y", "interactive-mcp"]
}
}
}For VS Code, add this to your User Settings (JSON) file or .vscode/mcp.json:
{
"mcp": {
"servers": {
"interactive-mcp": {
"command": "npx",
"args": ["-y", "interactive-mcp"]
}
}
}
}