mcp-server-chart vs polymarket-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | polymarket-mcp by pab1it0 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
polymarket-mcp · Summary
MCP server providing access to Polymarket's prediction markets data through standardized interfaces.
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
polymarket-mcp · Use cases
- AI assistants providing market analysis and insights on prediction markets
- Automated trading systems that react to Polymarket data changes
- Research tools that aggregate and analyze prediction market trends
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"]
}
}
}polymarket-mcp · Install
Docker Installation
- Build the Docker image:
docker build -t polymarket-mcp-server .- Add to Claude Desktop configuration:
{
"mcpServers": {
"polymarket": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "GAMMA_API_URL",
"-e", "GAMMA_REQUIRES_AUTH",
"polymarket-mcp-server"
],
"env": {
"GAMMA_API_URL": "https://gamma-api.polymarket.com",
"GAMMA_REQUIRES_AUTH": "false"
}
}
}
}UV Installation (Alternative)
- Set up environment:
cp .env.template .env
# Edit .env with your configuration- Add to Claude Desktop configuration:
{
"mcpServers": {
"polymarket": {
"command": "/usr/local/bin/uv",
"args": [
"run",
"-m", "polymarket_mcp_server.main"
],
"cwd": "<full path to polymarket-mcp directory>",
"env": {
"GAMMA_API_URL": "https://gamma-api.polymarket.com",
"GAMMA_REQUIRES_AUTH": "false"
}
}
}
}