mcp-server-chart vs elysia-mcp-starter
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | elysia-mcp-starter by kerlos | |
|---|---|---|
| Stars | ★ 4,068 | ★ 8 |
| 30d uses | 10,239 | — |
| Score | 84 | 35 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
elysia-mcp-starter · Summary
A starter template for building MCP servers with Elysia and Bun runtime.
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
elysia-mcp-starter · Use cases
- Rapidly prototype new MCP servers with pre-configured setup
- Develop custom tools and resources for specific LLM applications
- Integrate MCP functionality into ElysiaJS applications
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"]
}
}
}elysia-mcp-starter · Install
Installation
Option 1: Using Bun Create (Recommended)
# Create a new project from the starter template
bun create https://github.com/kerlos/elysia-mcp-starter my-mcp-project
# Navigate to the project
cd my-mcp-project
# Install dependencies
bun install
# Start development server
bun run devOption 2: Clone Repository
git clone https://github.com/kerlos/elysia-mcp-starter.git
cd elysia-mcp-starter
bun install
bun run devThe MCP server will be available at:
- Server:
http://localhost:3000 - MCP endpoint:
http://localhost:3000/mcp
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"elysia-mcp-starter": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}