mcp-server-chart vs MCPWrapper
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCPWrapper by jm12138 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCPWrapper · Summary
MCPWrapper is a Python tool that wraps any Python package as an MCP server without code modification.
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
MCPWrapper · Use cases
- Quickly exposing existing Python libraries as MCP services without refactoring code
- Creating MCP servers for internal tools by wrapping utility modules
- Converting standalone Python packages to work with MCP-compatible clients
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"]
}
}
}MCPWrapper · Install
pip install git+https://github.com/jm12138/MCPWrapperTo use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"json-mcp": {
"command": "python",
"args": ["-m", "mcpwrapper", "--server_name", "json_mcp_server", "--module_name", "json", "--transport", "sse", "--listen", "0.0.0.0", "--port", "8000"]
}
}
}