Skip to content
VS Code

Autotask for VS Code

io.github.wyre-technology/autotask-mcp

MCP server for Kaseya Autotask PSA — companies, tickets, projects, time entries, and more.

client:VS Code transport:stdio runtime:oci

Install Autotask in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "autotask-username",
      "description": "AUTOTASK_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "autotask-secret",
      "description": "AUTOTASK_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "autotask-integration-code",
      "description": "AUTOTASK_INTEGRATION_CODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "autotask-api-url",
      "description": "AUTOTASK_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "autotask-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/autotask-mcp:v2.32.10"
      ],
      "env": {
        "AUTOTASK_USERNAME": "${input:autotask-username}",
        "AUTOTASK_SECRET": "${input:autotask-secret}",
        "AUTOTASK_INTEGRATION_CODE": "${input:autotask-integration-code}",
        "AUTOTASK_API_URL": "${input:autotask-api-url}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Autotask in other clients