
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.
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:
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 READMEautotask_search_companiesSearch companies with filters
autotask_create_companyCreate new company
autotask_update_companyUpdate existing company
autotask_search_contactsSearch contacts with filters
autotask_create_contactCreate new contact
autotask_search_ticketsSearch tickets with filters
autotask_get_ticket_detailsGet full ticket details by ID
autotask_create_ticketCreate new ticket
autotask_create_time_entryLog time entry
autotask_search_time_entriesSearch time entries with filters
autotask_search_projectsSearch projects with filters
autotask_test_connectionTest API connectivity
Comparable tools
Installation
Installation
Option 1: MCPB Bundle (Claude Desktop)
- Download
autotask-mcp.mcpbfrom the [latest release](https://github.com/wyre-technology/autotask-mcp/releases/latest) - Open the file (double-click or drag into Claude Desktop)
- 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-mcpOption 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
Last updated · Auto-generated from public README + GitHub signals.