Kaseya BMS for VS Code
io.github.wyre-technology/kaseya-bms-mcp
MCP server for Kaseya BMS PSA — tickets, accounts, time entries, contracts.
client:VS Code
transport:stdio
runtime:oci
Install Kaseya BMS in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kaseya-bms-tenant-subdomain",
"description": "KASEYA_BMS_TENANT_SUBDOMAIN",
"password": true
},
{
"type": "promptString",
"id": "kaseya-bms-api-token",
"description": "KASEYA_BMS_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "kaseya-bms-k1-token",
"description": "KASEYA_BMS_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-bms-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/kaseya-bms-mcp:v1.1.4"
],
"env": {
"KASEYA_BMS_TENANT_SUBDOMAIN": "${input:kaseya-bms-tenant-subdomain}",
"KASEYA_BMS_API_TOKEN": "${input:kaseya-bms-api-token}",
"KASEYA_BMS_K1_TOKEN": "${input:kaseya-bms-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