Skip to content
VS Code

IT Glue for VS Code

io.github.wyre-technology/itglue-mcp

MCP server for IT Glue — organizations, configurations, passwords, flexible assets, and documents.

client:VS Code transport:stdio runtime:oci

Install IT Glue in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "itglue-api-key",
      "description": "ITGLUE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "itglue-region",
      "description": "ITGLUE_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "itglue-base-url",
      "description": "ITGLUE_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": {
    "itglue-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/itglue-mcp:v1.16.3"
      ],
      "env": {
        "ITGLUE_API_KEY": "${input:itglue-api-key}",
        "ITGLUE_REGION": "${input:itglue-region}",
        "ITGLUE_BASE_URL": "${input:itglue-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

IT Glue in other clients