Skip to content
VS Code

MSP360 for VS Code

io.github.wyre-ai/msp360-mcp

MCP server for MSP360's Managed Backup Service API — companies, computers, and backup plans.

client:VS Code transport:stdio runtime:oci

Install MSP360 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "msp360-username",
      "description": "MSP360_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "msp360-password",
      "description": "MSP360_PASSWORD",
      "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": {
    "msp360-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/msp360-mcp:v1.0.0"
      ],
      "env": {
        "MSP360_USERNAME": "${input:msp360-username}",
        "MSP360_PASSWORD": "${input:msp360-password}",
        "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

MSP360 in other clients