bitrix24 mcp for VS Code
io.github.rcs-kz/bitrix24-mcp
Bitrix24 Cloud MCP server — 45 tools across CRM, Tasks, Deals, Leads, Files, Disk.
client:VS Code
transport:stdio
runtime:npm
Install bitrix24 mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bitrix24-webhook-url",
"description": "BITRIX24_WEBHOOK_URL",
"password": true
},
{
"type": "promptString",
"id": "rcs-license-key",
"description": "RCS_LICENSE_KEY",
"password": true
}
],
"servers": {
"bitrix24-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rcs-kz/bitrix24-mcp"
],
"env": {
"BITRIX24_WEBHOOK_URL": "${input:bitrix24-webhook-url}",
"RCS_LICENSE_KEY": "${input:rcs-license-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs