1xn-vmcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
1xn-vmcp by 1xn-labs | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 49 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 44 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 5 mo ago | this month |
1xn-vmcp · Summary
vMCP is a virtual MCP server platform that combines multiple MCP servers into a unified endpoint with customization capabilities.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
1xn-vmcp · Use cases
- Combining multiple MCP servers into a unified endpoint for AI workflows
- Customizing and extending MCP tools with personalized prompts and arguments
- Managing authentication across different AI clients (Claude, ChatGPT, VSCode)
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
1xn-vmcp · Install
Installation
Using uv (recommended):
uvx --from 1xn-vmcp@latest vmcp runUsing pip:
pip install 1xn-vmcp
vmcp runUsing Docker:
docker pull onexn/vmcp:latest
docker run -it onexn/vmcp:latest vmcp runClaude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"vmcp": {
"command": "uvx",
"args": ["--from", "1xn-vmcp@latest", "vmcp", "run"]
}
}
}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"]
}
}
}