ConnectWise Manage for VS Code
io.github.wyre-technology/connectwise-manage-mcp
MCP server for ConnectWise Manage PSA — companies, tickets, projects, time entries, and more.
client:VS Code
transport:stdio
runtime:oci
Install ConnectWise Manage in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cw-manage-company-id",
"description": "CW_MANAGE_COMPANY_ID",
"password": true
},
{
"type": "promptString",
"id": "cw-manage-public-key",
"description": "CW_MANAGE_PUBLIC_KEY",
"password": true
},
{
"type": "promptString",
"id": "cw-manage-private-key",
"description": "CW_MANAGE_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "cw-manage-client-id",
"description": "CW_MANAGE_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "cw-manage-url",
"description": "CW_MANAGE_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": {
"connectwise-manage-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/connectwise-manage-mcp:v1.8.6"
],
"env": {
"CW_MANAGE_COMPANY_ID": "${input:cw-manage-company-id}",
"CW_MANAGE_PUBLIC_KEY": "${input:cw-manage-public-key}",
"CW_MANAGE_PRIVATE_KEY": "${input:cw-manage-private-key}",
"CW_MANAGE_CLIENT_ID": "${input:cw-manage-client-id}",
"CW_MANAGE_URL": "${input:cw-manage-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