mcp-server-chart vs mcp-sse-proxy
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-sse-proxy by getsimpletool | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsCommunication |
| Language | TypeScript | Python |
| Last commit | this month | 13 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-sse-proxy · Summary
A Python proxy that bridges MCP STDIO communication with SSE protocol for web-based ClaudeAI clients.
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-sse-proxy · Use cases
- Enabling ClaudeAI Desktop to connect to MCP servers via web interfaces
- Bridging local MCP tools with web-based AI applications
- Converting legacy STDIO-based MCP servers to modern web-compatible protocols
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-sse-proxy · Install
pip3 install mcp-sse-proxy
# Or from source:
git clone <repository>
cd mcp-sse-proxy
pip3 install -r requirements.txtClaude Desktop Configuration:
{
"mcpServers": {
"mcp-sse-proxy": {
"command": "python",
"args": [
"/path/to/mcp_sse_proxy.py",
"--sse-url",
"http://your-server:8000"
],
"env": {
"OPENAI_API_KEY": "your-key-here"
}
}
}
}