ImmyBot for VS Code
io.github.wyre-ai/immybot-mcp
MCP server for ImmyBot — Windows software deployment, maintenance, tenants, deployments.
client:VS Code
transport:stdio
runtime:oci
Install ImmyBot in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "immybot-tenant-id",
"description": "IMMYBOT_TENANT_ID",
"password": true
},
{
"type": "promptString",
"id": "immybot-client-id",
"description": "IMMYBOT_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "immybot-client-secret",
"description": "IMMYBOT_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "immybot-instance-subdomain",
"description": "IMMYBOT_INSTANCE_SUBDOMAIN",
"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": {
"immybot-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/immybot-mcp:v1.2.13"
],
"env": {
"IMMYBOT_TENANT_ID": "${input:immybot-tenant-id}",
"IMMYBOT_CLIENT_ID": "${input:immybot-client-id}",
"IMMYBOT_CLIENT_SECRET": "${input:immybot-client-secret}",
"IMMYBOT_INSTANCE_SUBDOMAIN": "${input:immybot-instance-subdomain}",
"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