Skip to content
VS Code

SuperOps for VS Code

io.github.wyre-technology/superops-mcp

MCP server for SuperOps unified PSA+RMM — clients, tickets, assets, and more.

client:VS Code transport:stdio runtime:oci

Install SuperOps in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "superops-api-token",
      "description": "SUPEROPS_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "superops-subdomain",
      "description": "SUPEROPS_SUBDOMAIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "superops-region",
      "description": "SUPEROPS_REGION",
      "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": {
    "superops-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/superops-mcp:v1.6.6"
      ],
      "env": {
        "SUPEROPS_API_TOKEN": "${input:superops-api-token}",
        "SUPEROPS_SUBDOMAIN": "${input:superops-subdomain}",
        "SUPEROPS_REGION": "${input:superops-region}",
        "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

SuperOps in other clients