mcp-server-chart vs computer-use-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | computer-use-mcp by domdomegg | |
|---|---|---|
| Stars | ★ 4,068 | ★ 256 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| 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.
computer-use-mcp · Summary
An MCP server that gives Claude AI complete control of your computer for desktop automation tasks.
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
computer-use-mcp · Use cases
- Automating desktop background changes and system settings
- Website interaction through keyboard navigation using Rango extension
- Cross-platform desktop automation with visual recognition
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"]
}
}
}computer-use-mcp · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": [
"-y",
"computer-use-mcp"
]
}
}
}Claude Code
claude mcp add --scope user --transport stdio computer-use -- npx -y computer-use-mcpCursor
Create .cursor/mcp.json:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}Cline
Via marketplace or add to MCP configuration:
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}