mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by agentico-dev | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 3 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 30 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 16 mo ago | this month |
mcp-server · Summary
A facade library that simplifies MCP server implementation by providing a base class and registration pattern.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server · Use cases
- Rapid prototyping of MCP servers with custom tools
- Creating consistent tool implementations across multiple MCP servers
- Simplifying the learning curve for new MCP developers
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
mcp-server · Install
Install the package with npm:
yarn add @agentico/mcp-serverTo use with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"my-server": {
"command": "node",
"args": ["/path/to/your/server.js"]
}
}
}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"]
}
}
}