mcp-server-chart vs unanet-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | unanet-mcp-server by culstrup | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityFinanceDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
unanet-mcp-server · Summary
MCP server connecting Claude Desktop to Unanet GovCon ERP for natural language project, timesheet, and report management.
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
unanet-mcp-server · Use cases
- Generate executive briefings and project status updates in seconds instead of minutes
- Submit timesheets and expenses through natural language commands
- Create invoices and financial reports without navigating complex ERP menus
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"]
}
}
}unanet-mcp-server · Install
Installation
Windows Users (Recommended)
- Download the project from GitHub as a ZIP file
- Extract to
C:\UnanetMCP\ - Double-click
setup-windows.batand follow the prompts
Mac/Linux Users
- Clone the repository:
git clone https://github.com/culstrup/unanet-mcp-server.git
cd unanet-mcp-server- Install dependencies and build:
npm install
npm run build- Copy
.env.exampleto.envand add your Unanet credentials
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"unanet": {
"command": "node",
"args": ["/absolute/path/to/unanet-mcp-server/dist/index.js"],
"env": {
"UNANET_USERNAME": "your-username",
"UNANET_PASSWORD": "your-password",
"UNANET_API_KEY": "your-api-key",
"UNANET_FIRM_CODE": "your-firm-code",
"UNANET_BASE_URL": "https://your-instance.unanet.com"
}
}
}
}