MCP Catalogs
Homeautotask-mcp screenshot

autotask-mcp

by wyre-technology·36·Score 44

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

productivitydeveloper-toolsops-infra
36
Forks
3
Open issues
this month
Last commit
2d ago
Indexed

Overview

This is a well-structured MCP server that bridges the gap between AI assistants and Autotask PSA systems. It offers comprehensive functionality with 39 tools covering all major operations MSP teams use daily, including ticket management, time logging, company lookups, and project management. The server supports multiple deployment methods - from simple MCPB bundles for Claude Desktop to Docker containers and from-source installation, making it accessible across different environments.

Try asking AI

After installing, here are 6 things you can ask your AI assistant:

you:Service desk automation: AI can search and update tickets without leaving the chat interface
you:Project management: Create and manage projects directly through AI commands
you:Time tracking: Automatically log time entries for completed tasks
you:Customer service: Quickly retrieve company and contact information during support conversations
you:What Autotask permissions are required?
you:Can I use this with other MCP-compatible clients besides Claude?

When to choose this

Choose this if you're an MSP using Autotask PSA and want to eliminate context switching between Autotask and your AI assistant.

When NOT to choose this

Avoid if you need access to Autotask features not covered by these 39 tools, or if you require advanced UI interactions beyond API access.

Tools this server exposes

12 tools extracted from the README
  • autotask_search_companies

    Search companies with filters

  • autotask_create_company

    Create new company

  • autotask_update_company

    Update existing company

  • autotask_search_contacts

    Search contacts with filters

  • autotask_create_contact

    Create new contact

  • autotask_search_tickets

    Search tickets with filters

  • autotask_get_ticket_details

    Get full ticket details by ID

  • autotask_create_ticket

    Create new ticket

  • autotask_create_time_entry

    Log time entry

  • autotask_search_time_entries

    Search time entries with filters

  • autotask_search_projects

    Search projects with filters

  • autotask_test_connection

    Test API connectivity

Comparable tools

halopsa-mcpconnectwise-automate-mcpitglue-mcpdatto-rmm-mcp

Installation

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

FAQ

What Autotask permissions are required?
The API user needs read/write access to all entities you want to interact with, including companies, contacts, tickets, projects, time entries, and billing items.
Can I use this with other MCP-compatible clients besides Claude?
Yes, this server implements the standard MCP protocol and should work with any MCP-compatible client, including those that support stdio or HTTP transport.

Compare autotask-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.