mcp-server-chart vs Skill_Seekers
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Skill_Seekers by yusufkaraaslan | |
|---|---|---|
| Stars | ★ 4,068 | ★ 13,581 |
| 30d uses | 10,239 | — |
| Score | 84 | 61 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| 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.
Skill_Seekers · Summary
A comprehensive MCP server that converts documentation, GitHub repos, and PDFs into Claude AI skills with automatic conflict detection.
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_Seekers · Use cases
- Converting documentation websites into Claude Skills for AI assistants
- Transforming GitHub repositories into structured knowledge for RAG pipelines
- Creating AI skills from PDF documents and video transcripts
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_Seekers · Install
# Install via pip
pip install skill-seekers
# Basic usage
skill-seekers create https://docs.example.com/
skill-seekers package output/example --target claudeFor Claude Desktop integration, add to your Claude Desktop config:
{
"mcpServers": {
"skill-seekers": {
"command": "skill-seekers",
"args": ["mcp"]
}
}
}