mcp-server-chart vs mcp-task-manager-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-task-manager-server by bsmi021 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper 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.
mcp-task-manager-server · Summary
An MCP server for project and task management using SQLite with client-driven tools.
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
mcp-task-manager-server · Use cases
- AI agents managing complex project workflows across multiple tasks
- Development teams tracking bug fixes and feature implementations
- Personal productivity systems for task prioritization and dependency management
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"]
}
}
}mcp-task-manager-server · Install
Installation
- **Prerequisites:** Node.js (LTS recommended), npm
- **Install Dependencies:**
``bash npm install ``
- **Run in Development Mode:**
``bash npm run dev ``
- **Build for Production:**
``bash npm run build ``
- **Run Production Build:**
``bash npm start ``
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"task-manager": {
"command": "node",
"args": ["dist/server.js"],
"env": {
"DATABASE_PATH": "./data/taskmanager.db"
}
}
}
}