mcp-server-chart vs mcp-server-microsoft-paint
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-microsoft-paint by ghuntley | |
|---|---|---|
| Stars | ★ 4,068 | ★ 20 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMediaProductivity |
| Language | TypeScript | Rust |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server-microsoft-paint · Summary
An MCP server for controlling Microsoft Paint with drawing, shape tools, and window management via JSON-RPC.
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-microsoft-paint · Use cases
- Automate simple graphics creation in Paint through AI assistants
- Integrate Paint functionality into larger automation workflows
- Create custom drawing tools that interface with Paint programmatically
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"]
}
}
}mcp-server-microsoft-paint · Install
Installation
- Clone the repository:
git clone https://github.com/ghuntley/mcp-server-microsoft-paint
cd mcp-server-microsoft-paint- Build the server:
cargo build --release- Run the server:
cargo run --releaseClaude Desktop Configuration
Add to your Claude Desktop config.json:
"mcpServers": {
"paint": {
"command": "path/to/cargo",
"args": ["run", "--release", "--", "mcp-server-microsoft-paint"],
"env": {}
}
}