mcp-server-chart vs erpnext-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | erpnext-mcp-server by rakeshgangwar | |
|---|---|---|
| Stars | ★ 4,068 | ★ 90 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsFinance |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
erpnext-mcp-server · Summary
Connect AI assistants to ERPNext/Frappe systems via MCP for document management and API calls.
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
erpnext-mcp-server · Use cases
- AI assistant retrieves customer lists and details from ERPNext to answer customer inquiries
- Automate document creation and updates in ERPNext through natural language commands
- Generate reports and business insights by leveraging ERPNext data through AI tools
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"]
}
}
}erpnext-mcp-server · Install
Installation
Install dependencies:
npm installBuild the server:
npm run buildClaude Desktop Configuration
Add to your config file:
{
"mcpServers": {
"erpnext": {
"command": "node",
"args": ["/path/to/erpnext-server/build/index.js"],
"env": {
"ERPNEXT_URL": "http://your-erpnext-instance.com",
"ERPNEXT_API_KEY": "your-api-key",
"ERPNEXT_API_SECRET": "your-api-secret"
}
}
}
}