mcp-server-chart vs systemprompt-mcp-taskchecker
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | systemprompt-mcp-taskchecker by Ejb503 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 35 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityAI / LLM ToolsDeveloper Tools |
| 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.
systemprompt-mcp-taskchecker · Summary
MCP server for intelligent task management, evaluation scoring, and session-based workflow tracking with comprehensive enterprise features.
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
systemprompt-mcp-taskchecker · Use cases
- AI assistant task management with structured evaluation
- Enterprise workflow orchestration with progress tracking
- Session-based task coordination for collaborative projects
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"]
}
}
}systemprompt-mcp-taskchecker · Install
Installation
Prerequisites
- Node.js 18.0.0 or higher
- npm
Quick Start
# Clone the repository
git clone https://github.com/Ejb503/systemprompt-mcp-taskchecker.git
cd systemprompt-mcp-taskchecker
# Install dependencies
npm install
# Build the project
npm run build
# Start the server
npm startClaude Desktop Integration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"systemprompt-taskchecker": {
"command": "npx",
"args": ["systemprompt-mcp-taskchecker"],
"env": {
"NODE_ENV": "production"
}
}
}
}