mcp-server-chart vs skill-to-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | skill-to-mcp by biocontext-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
skill-to-mcp · Summary
Converts Claude Skills to MCP server resources with discovery and access tools.
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
skill-to-mcp · Use cases
- Organize and access specialized AI tools through MCP in biomedical research
- Create centralized repositories of operational skills for LLM applications
- Share and distribute standardized skill collections across teams
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"]
}
}
}skill-to-mcp · Install
Install using pip:
pip install --user skill_to_mcpOr use uvx for immediate execution:
SKILLS_DIR=/path/to/skills uvx skill_to_mcpFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"skill-to-mcp": {
"command": "uvx",
"args": ["skill_to_mcp", "--skills-dir", "/path/to/your/skills"],
"env": {
"UV_PYTHON": "3.12"
}
}
}
}