mcp-server-chart vs aiskillstore
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | aiskillstore by garasegae | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
aiskillstore · Summary
MCP server for AI agents to discover, install, and review skills in the agent-first skill marketplace.
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
aiskillstore · Use cases
- AI agents discovering and installing new capabilities based on their specific needs
- Skill developers uploading and managing their AI agent skills through the marketplace
- Systems integrators checking compatibility between skills and target platforms before deployment
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"]
}
}
}aiskillstore · Install
Installation
Quick start (remote)
Add this configuration to your MCP client settings:
{
"mcpServers": {
"aiskillstore": {
"url": "https://aiskillstore.io/mcp",
"transport": "streamable-http"
}
}
}Self-host (Docker)
docker build -t aiskillstore-mcp .
docker run --rm -i aiskillstore-mcpFor development or testing, you can override the backend URL:
docker run --rm -i -e SKILL_STORE_URL=https://staging.aiskillstore.io aiskillstore-mcp