Skip to content
VS Code

swsd for VS Code

io.github.mikimatsub/swsd

MCP server for SolarWinds Service Desk tickets, catalog, knowledge, ITSM operations, and workflows.

client:VS Code transport:stdio runtime:npm

Install swsd in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "swsd-token",
      "description": "SWSD_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swsd-base-url",
      "description": "SWSD_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swsd-profile",
      "description": "SWSD_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swsd-write-mode",
      "description": "SWSD_WRITE_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swsd-attachment-root",
      "description": "SWSD_ATTACHMENT_ROOT",
      "password": true
    }
  ],
  "servers": {
    "swsd": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "swsd-mcp"
      ],
      "env": {
        "SWSD_TOKEN": "${input:swsd-token}",
        "SWSD_BASE_URL": "${input:swsd-base-url}",
        "SWSD_PROFILE": "${input:swsd-profile}",
        "SWSD_WRITE_MODE": "${input:swsd-write-mode}",
        "SWSD_ATTACHMENT_ROOT": "${input:swsd-attachment-root}"
      }
    }
  }
}

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

swsd in other clients