mcp-server-chart vs svelte5-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | svelte5-mcp by StudentOfJS | |
|---|---|---|
| Stars | ★ 4,068 | ★ 64 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
svelte5-mcp · Summary
MCP server providing specialized tools and knowledge for Svelte 5 development with runes, snippets, and reactivity patterns.
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
svelte5-mcp · Use cases
- Searching for Svelte 5 concepts and runes explanations during development
- Generating modern Svelte 5 components with optimized patterns and best practices
- Auditing existing Svelte code for optimization opportunities and migration to Svelte 5
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"]
}
}
}svelte5-mcp · Install
# Clone and setup
git clone <repository-url>
cd svelte5-mcp-server
# Install dependencies
npm install
# Build the server
npm run build
# Start the server
npm startAdd to Claude Desktop configuration:
{
"mcpServers": {
"svelte5": {
"command": "node",
"args": ["/path/to/svelte5-mcp-server/dist/index.js"],
"env": {}
}
}
}