MCP Catalogs
Home

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 uses10,239
Score8440
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityDeveloper ToolsOther
LanguageTypeScriptTypeScript
Last committhis month11 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-chart

For 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

  1. **Prerequisites:** Node.js (LTS recommended), npm
  2. **Install Dependencies:**

``bash npm install ``

  1. **Run in Development Mode:**

``bash npm run dev ``

  1. **Build for Production:**

``bash npm run build ``

  1. **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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.