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 aryankeluskar | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 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
A comprehensive MCP server for accessing Polymarket's prediction markets through Claude AI with market discovery, analysis tools, and real-time data.
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
- Build market analysis tools to identify prediction market trends and probabilities
- Create trading assistants to monitor high-volume markets and trading patterns
- Develop educational platforms to explain prediction markets using real data examples
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
Installation
- Clone this repository:
git clone https://github.com/aryankeluskar/polymarket-mcp.git
cd polymarket-mcp- Install dependencies:
npm install- Build the server:
npm run build- Add to Claude Desktop configuration:
{
"mcpServers": {
"polymarket": {
"command": "node",
"args": [".smithery/index.js"],
"env": {
"SMITHERY_API_KEY": "your_api_key_here"
}
}
}
}