adonis-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
adonis-mcp by 7nohe | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 10 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 35 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
adonis-mcp · Summary
AdonisJS package for building remote MCP servers with Server-Sent Events support.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
adonis-mcp · Use cases
- Building MCP servers within existing AdonisJS applications
- Creating custom AI tools with backend logic in AdonisJS
- Exposing database resources through MCP protocol
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
adonis-mcp · Install
node ace add @7nohe/adonis-mcpAfter installation, configure your MCP server in config/mcp.ts:
import { defineConfig } from '@7nohe/adonis-mcp'
export default defineConfig({
ssePath: '/sse',
messagesPath: '/messages',
serverOptions: {
name: 'mymcp',
version: '0.0.1',
},
})For Claude Desktop, add to config.json:
{
"mcpServers": {
"mymcp": {
"url": "http://localhost:3333/sse"
}
}
}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"]
}
}
}