agent vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
agent by 1mcp-app | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 438 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 52 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
agent · Summary
1MCP is a unified MCP runtime that aggregates multiple MCP servers into one, offering CLI mode for progressive tool discovery.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
agent · Use cases
- Giving coding agents a stable runtime with a smaller working surface
- Sharing the same MCP inventory across Cursor, Claude Code, Codex, and internal tools
- Exposing context-specific template servers per repository, branch, or session
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
agent · Install
Installation
- Install 1MCP globally:
npm install -g @1mcp/agent- Add upstream MCP servers:
1mcp mcp add context7 -- npx -y @upstash/context7-mcp- Start the runtime:
1mcp serveFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"1mcp": {
"url": "http://127.0.0.1:3050/mcp?app=claude-code"
}
}
}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"]
}
}
}