swift-skeleton vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
swift-skeleton by 1amageek | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 15 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 42 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | C | TypeScript |
| Last commit | 1 mo ago | this month |
swift-skeleton · Summary
Swift code skeleton extractor that provides structural overviews of codebases via MCP for better LLM code exploration.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
swift-skeleton · Use cases
- Providing AI coding assistants with code structure overview before diving into implementation details
- Helping developers quickly understand unfamiliar codebases by examining their skeleton structure
- Enabling efficient navigation of large codebases by focusing on declarations and relationships
- Supporting code analysis tools with fast indexing and querying capabilities
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
swift-skeleton · Install
Installation Options
**Mint (recommended)**
mint install 1amageek/swift-skeleton**Build from source**
git clone https://github.com/1amageek/swift-skeleton.git
cd swift-skeleton
swift build -c release**MCP Configuration for Claude Desktop** Add to your claude_desktop_config.json:
{
"mcpServers": {
"swift-skeleton": {
"command": "path/to/skltn",
"args": ["daemon"]
}
}
}**Agent Skill Installation**
skltn install-skillmcp-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"]
}
}
}