keryx vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
keryx by actionhero | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 29 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 44 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
keryx · Summary
Fullstack TypeScript framework where actions work as HTTP, WebSocket, CLI, tasks, and MCP tools automatically.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
keryx · Use cases
- Building AI agent backends with MCP tools that mirror your existing API endpoints
- Creating unified APIs that work across web, WebSocket, CLI, and background processing
- Developing fullstack applications with Drizzle ORM and type-safe responses
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
keryx · Install
# Create a new project
bunx keryx new my-app
cd my-app
cp .env.example .env
bun install
bun devFor Claude Desktop MCP configuration:
{
"mcpServers": {
"my-app": {
"url": "http://localhost:8080/mcp"
}
}
}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"]
}
}
}