MCP Catalogs
Home

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 uses10,239
Score8440
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsMediaProductivity
LanguageTypeScriptRust
Last committhis month1 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-chart

For 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

  1. Clone the repository:
git clone https://github.com/ghuntley/mcp-server-microsoft-paint
cd mcp-server-microsoft-paint
  1. Build the server:
cargo build --release
  1. Run the server:
cargo run --release

Claude Desktop Configuration

Add to your Claude Desktop config.json:

"mcpServers": {
  "paint": {
    "command": "path/to/cargo",
    "args": ["run", "--release", "--", "mcp-server-microsoft-paint"],
    "env": {}
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.