MCP Catalogs
Home

mcp-server-chart vs autotask-mcp

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

mcp-server-chart
by antvis
autotask-mcp
by wyre-technology
Stars★ 4,068★ 36
30d uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityDeveloper ToolsOps & Infra
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

autotask-mcp · Summary

MCP server providing 39 tools for Kaseya Autotask PSA integration, enabling AI to manage tickets, projects, time entries, and companies through natural language.

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

autotask-mcp · Use cases

  • Service desk automation: AI can search and update tickets without leaving the chat interface
  • Project management: Create and manage projects directly through AI commands
  • Time tracking: Automatically log time entries for completed tasks
  • Customer service: Quickly retrieve company and contact information during support conversations

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"]
    }
  }
}

autotask-mcp · Install

Installation

Option 1: MCPB Bundle (Claude Desktop)

  1. Download autotask-mcp.mcpb from the [latest release](https://github.com/wyre-technology/autotask-mcp/releases/latest)
  2. Open the file (double-click or drag into Claude Desktop)
  3. Enter your Autotask credentials when prompted

Option 2: Claude Code (CLI)

claude mcp add autotask-mcp \
  -e AUTOTASK_USERNAME=your-user@company.com \
  -e AUTOTASK_SECRET=your-secret \
  -e AUTOTASK_INTEGRATION_CODE=your-code \
  -- npx -y github:wyre-technology/autotask-mcp

Option 3: Docker

{
  "mcpServers": {
    "autotask": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "MCP_TRANSPORT=stdio",
        "-e", "AUTOTASK_USERNAME=your-user@company.com",
        "-e", "AUTOTASK_SECRET=your-secret",
        "-e", "AUTOTASK_INTEGRATION_CODE=your-code",
        "--entrypoint", "node",
        "ghcr.io/wyre-technology/autotask-mcp:latest",
        "dist/entry.js"
      ]
    }
  }
}```
Comparison generated from public README + GitHub signals. Last updated automatically.