mcp-server-chart vs awesome-agent-skills-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | awesome-agent-skills-mcp by shadowrootdev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
awesome-agent-skills-mcp · Summary
MCP server providing 100+ AI agent skills from top organizations including Anthropic, Vercel, and Hugging Face.
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
awesome-agent-skills-mcp · Use cases
- Enhancing AI assistants with specialized skills for document processing, code review, and development best practices
- Automating workflows by invoking skills for security analysis, React optimization, and deployment
- Creating domain-specific AI assistants with curated knowledge from organizations like Anthropic and Vercel
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"]
}
}
}awesome-agent-skills-mcp · Install
Installation
Quick Start
npx awesome-agent-skills-mcpGlobal Installation
npm install -g awesome-agent-skills-mcp
awesome-agent-skills-mcpClaude Desktop Configuration
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"awesome-agent-skills": {
"command": "npx",
"args": ["awesome-agent-skills-mcp"]
}
}
}VS Code / GitHub Copilot Configuration
Create or update .vscode/mcp.json in your project:
{
"servers": {
"awesome-agent-skills": {
"command": "npx",
"args": ["awesome-agent-skills-mcp"]
}
}
}