MCP Catalogs
Home

mcp-server-chart vs mcp-tasks

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp-tasks
by flesler
Stars★ 4,068★ 45
30d uses10,239
Score8443
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month8 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-tasks · Summary

A comprehensive MCP server for task management supporting Markdown, JSON and YAML formats with AI-optimized 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

mcp-tasks · Use cases

  • AI assistants tracking and managing development tasks across projects
  • Teams collaborating on task lists with AI integration for task updates
  • Individuals using AI to maintain personal productivity systems with multiple file format support

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-tasks · Install

Installation

Quick Start

Add to your MCP configuration (Cursor, Claude Desktop, etc.):

{
  "mcpServers": {
    "mcp-tasks": {
      "command": "npx",
      "args": ["-y", "mcp-tasks"]
    }
  }
}

Docker Option

{
  "mcpServers": {
    "mcp-tasks": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "flesler/mcp-tasks"
      ]
    }
  }
}

With Environment Variables

{
  "mcpServers": {
    "mcp-tasks": {
      "command": "npx",
      "args": ["-y", "mcp-tasks"],
      "env": {
        "STATUS_WIP": "In Progress",
        "STATUS_TODO": "To Do",
        "STATUS_DONE": "Done",
        "AUTO_WIP": "true"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.