Kaseya VSA for VS Code
io.github.wyre-technology/kaseya-vsa-mcp
MCP server for Kaseya VSA RMM — agents, patches, procedures, alarms, tickets.
client:VS Code
transport:stdio
runtime:oci
Install Kaseya VSA in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kaseya-vsa-tenant-url",
"description": "KASEYA_VSA_TENANT_URL",
"password": true
},
{
"type": "promptString",
"id": "kaseya-vsa-username",
"description": "KASEYA_VSA_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "kaseya-vsa-password",
"description": "KASEYA_VSA_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "kaseya-vsa-k1-token",
"description": "KASEYA_VSA_K1_TOKEN",
"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": {
"kaseya-vsa-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/kaseya-vsa-mcp:v1.1.4"
],
"env": {
"KASEYA_VSA_TENANT_URL": "${input:kaseya-vsa-tenant-url}",
"KASEYA_VSA_USERNAME": "${input:kaseya-vsa-username}",
"KASEYA_VSA_PASSWORD": "${input:kaseya-vsa-password}",
"KASEYA_VSA_K1_TOKEN": "${input:kaseya-vsa-k1-token}",
"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