ictpbx mcp for VS Code
io.github.ictinnovations/ictpbx-mcp
Read ICTPBX state: extensions, DID numbers, SIP trunks, tenants and live PBX statistics.
client:VS Code
transport:stdio
runtime:npm
Install ictpbx mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ictpbx-base-url",
"description": "ICTPBX_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "ictpbx-username",
"description": "ICTPBX_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "ictpbx-password",
"description": "ICTPBX_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "ictpbx-timeout-ms",
"description": "ICTPBX_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "ictpbx-tls-insecure",
"description": "ICTPBX_TLS_INSECURE",
"password": true
}
],
"servers": {
"ictpbx-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ictpbx-mcp"
],
"env": {
"ICTPBX_BASE_URL": "${input:ictpbx-base-url}",
"ICTPBX_USERNAME": "${input:ictpbx-username}",
"ICTPBX_PASSWORD": "${input:ictpbx-password}",
"ICTPBX_TIMEOUT_MS": "${input:ictpbx-timeout-ms}",
"ICTPBX_TLS_INSECURE": "${input:ictpbx-tls-insecure}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs