Skip to content
VS Code

HaloPSA for VS Code

io.github.wyre-ai/halopsa-mcp

MCP server for HaloPSA — clients, tickets, and PSA workflows via the HaloPSA REST API.

client:VS Code transport:stdio runtime:oci

Install HaloPSA in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "halopsa-client-id",
      "description": "HALOPSA_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "halopsa-client-secret",
      "description": "HALOPSA_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "halopsa-tenant",
      "description": "HALOPSA_TENANT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "halopsa-base-url",
      "description": "HALOPSA_BASE_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": {
    "halopsa-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/halopsa-mcp:v1.7.15"
      ],
      "env": {
        "HALOPSA_CLIENT_ID": "${input:halopsa-client-id}",
        "HALOPSA_CLIENT_SECRET": "${input:halopsa-client-secret}",
        "HALOPSA_TENANT": "${input:halopsa-tenant}",
        "HALOPSA_BASE_URL": "${input:halopsa-base-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

HaloPSA in other clients