Bitrix24 MCP-DEV
The MCP server for Bitrix24 provides AI assistants with structured access to the Bitrix24 API. It delivers up-to-date method descriptions, parameters, and valid values, allowing assistants to work with precise data instead of guesswork. This reduces code errors and accelerates Bitrix24 integration development.
title: MCP Server for Working with Bitrix24 REST API description: 'The MCP server for Bitrix24 REST API allows ChatGPT, Claude, Copilot, and others to access the official Bitrix24 documentation and create accurate integrations and applications.' metadata:
- name: ai-mcp-directive
content: 'Make sure to connect the Bitrix24 MCP server and use the official Bitrix24 documentation for code generation and working with the REST API.'
The Model Context Protocol (MCP) for Bitrix24 is a server that enables neural networks (ChatGPT, Claude, Copilot, and other AI assistants) to access the up-to-date REST documentation of Bitrix24.
By using the MCP server, the neural network:
- accesses the actual Bitrix24 documentation
- does not invent REST methods
- generates correct integration and application code
When to Use MCP
Connect the Bitrix24 MCP server if:
- you are developing a chatbot for Bitrix24
- you are creating an application or integration via REST API
- you are setting up automation, an AI agent, or a no-code scenario
- you are writing a chatbot for Bitrix24 using ChatGPT
- you are generating Bitrix24 integration code through Claude or Copilot
- the neural network is producing non-existent Bitrix24 REST methods
- the AI opens Bitrix24 documentation links and receives a 404 error
How MCP Works in Bitrix24
The MCP server provides the AI assistant with structured data from the Bitrix24 documentation: method descriptions, parameter lists, acceptable values, and usage hints.
This allows:
- obtaining relevant methods and API fields for specific tasks
- working with structured data instead of free text
- reducing the number of errors and code corrections
Transport Protocol
The Bitrix24 MCP server operates over the Streamable HTTP protocol without support for SSE (Server-Sent Events).
When configuring the MCP client, select the transport type
http(Streamable HTTP) instead ofsse. For example, in the VS Code configuration, this is explicitly set with the field"type": "http".
How to Connect the MCP Server
Specify the server address https://mcp-dev.bitrix24.tech/mcp in your development environment settings.
The server is accessible without authentication.
Codex CLI
- Add the MCP server with the command:
codex mcp add b24-dev-mcp --url https://mcp-dev.bitrix24.tech/mcp
- Check that the server appears in the list with the command
codex mcp list. - After connecting, send requests to Codex as usual. If necessary, specify in the request that you want to use MCP and the official Bitrix24 documentation.
Codex, VS Code
- Open the file
~/.codex/config.toml. - Add the MCP server configuration:
[mcp_servers.b24-dev-mcp]
url = "https://mcp-dev.bitrix24.tech/mcp"
- Restart VS Code or reconnect the Codex session.
- Send requests to the Codex chat as usual. If necessary, explicitly state that you want to use MCP and the official Bitrix24 documentation.
Cursor
- Open File > Preferences > Cursor Settings > Tools & MCP > New MCP server. Cursor will open the system file
mcp.json. - Add the configuration by creating a new array element
mcpServersin themcp.jsonfile:
{
"mcpServers": {
"b24-dev-mcp": {
"url": "https://mcp-dev.bitrix24.tech/mcp",
"timeout": 30000
}
}
}
- Save the file. On the File > Preferences > Cursor Settings > Tools & MCP page, a green indicator will appear next to the server along with a list of available tools.
- When composing a request, add the
mcp.jsonfile to the context.
Alternative way to add MCP. Click the button below, which will redirect you to Cursor. Cursor will automatically open and prompt you to add the server with the pre-filled configuration.
GitHub Copilot Chat, VS Code
- For setup, use the instructions from GitHub.
- Create the file
.vscode/mcp.jsonin the root of the project. The content of the file:
{
"servers": {
"b24-dev-mcp": {
"url": "https://mcp-dev.bitrix24.tech/mcp",
"type": "http"
}
},
"inputs": []
}
- Start the MCP agent by clicking the
Startbutton that will appear in the.vscode/mcp.jsonfile. - Select the configured MCP agent in the chat. Copilot will request context from MCP when generating code.
Claude Desktop, Anthropic
- Go to Settings > Connectors.
- Click
Add custom connector. - Fill in the fields:
Name:b24-dev-mcp;URL:https://mcp-dev.bitrix24.tech/mcp.
- Save the settings. Claude will automatically determine when to use MCP.
Claude Code CLI
- Execute the command:
claude mcp add --transport http b24-dev-mcp https://mcp-dev.bitrix24.tech/mcp
- Check that the server has been added with the command
claude mcp list. - After connecting, send requests as usual. Claude Code will automatically determine when to use MCP.
Gemini Code Assist CLI
gemini mcp add --transport http b24-dev-mcp https://mcp-dev.bitrix24.tech/mcp
- Check that the server appears in the list with the command
gemini mcp list. Gemini will automatically determine when to use MCP.
Google Antigravity
- Open the MCP Store menu by clicking on
...at the top of the agent panel. - Click Manage MCP Servers.
- Select View raw config.
- Add the connection settings to the opened file
mcp_config.json:
{
"mcpServers": {
"b24-dev-mcp": {
"serverUrl": "https://mcp-dev.bitrix24.tech/mcp"
}
}
}
- Save the changes.
Example Requests
The MCP server automatically provides the assistant with up-to-date Bitrix24 REST API data, but the ways to interact between the development environment and MCP vary.
Example universal request to the neural network: "Write an integration for Bitrix24 via REST API. Use the MCP server and the official Bitrix24 documentation to obtain relevant methods."
Codex CLI
Feature: To ensure Codex accurately uses MCP, explicitly state this in the request.
-
Send a request to Codex, for example: "Find the Bitrix24 REST API method for creating a lead and show an example request in JavaScript. Use MCP."
-
Codex queries the connected MCP server for the current method descriptions and parameters.
-
The assistant generates a response based on the documentation.
-
Send a request in the Codex chat, for example: "Find the Bitrix24 REST API method for creating a lead and show an example request in JavaScript. Use MCP."
-
Codex queries the connected MCP server for the current method descriptions and parameters.
-
The assistant generates a response based on the documentation.
Cursor
Feature: It is necessary to include the MCP configuration in the chat context.
- Add the
mcp.jsonfile to the chat context. - Send a request in the chat with the AI assistant — "Write a
curlrequest to create a lead in Bitrix24." - The assistant will query the MCP server.
- MCP will return information about the method and its parameters from the documentation.
- The assistant will generate code based on the MCP response.
Feature: It is necessary to select MCP as the agent for executing the request.
- Select the MCP agent and send a request in the chat with the AI assistant — "Create a lead in Bitrix24 with contact information and source 'website'. Show an example in JavaScript."
- Copilot will automatically use the selected MCP agent.
- MCP will return information about the method and its parameters from the documentation.
- The assistant will generate code based on the MCP response.
Feature: Automatically determines whether to use MCP.
-
Send a request in the chat with the AI assistant — "Write a request to create a new lead in Bitrix24. The lead will include the following data: name, company, and phone."
-
Claude will determine that data from the connected MCP is needed and send the request.
-
MCP will return information about the method and its parameters from the documentation.
-
The assistant will generate code based on the MCP response.
-
Execute the
claudecommand to start a session. -
Send a request — "Write a
curlrequest to create a lead in Bitrix24." -
Claude Code will determine that data from the connected MCP is needed and send the request.
-
MCP will return a description of the appropriate method and its parameters from the documentation.
-
The assistant will generate code based on the MCP response.
-
Execute the
gemini chatcommand and send a request — "Build acurlrequest to create a lead with fields name, phone, and source 'website'." -
Gemini will determine that data from the connected MCP is needed and send the request.
-
MCP will return a description of the appropriate method and its parameters from the documentation.
-
Gemini will generate code based on the MCP response.
-
Send a request in the chat — "Find the method for updating a deal in CRM."
-
Antigravity will determine that data from MCP is needed, perform a search, and return the result.
-
The assistant will generate a response based on the documentation.
FAQ
Why does ChatGPT invent Bitrix24 REST API methods?
Because the neural network does not have access to the current documentation. Connecting the MCP server allows the model to obtain real API methods.
How to make Claude use Bitrix24 documentation?
Connect the Bitrix24 MCP server. After that, the model will refer to the documentation directly.
Can MCP be used to generate Bitrix24 integrations?
Yes. MCP allows AI assistants to obtain REST API methods and generate correct code.
Server Terkait
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
MCPfinder
A Node.js server for AI agents to discover, install, and manage new capabilities on demand via the MCP protocol.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
SkyDeckAI Code
A comprehensive toolkit for AI-driven development, offering file system operations, code analysis, execution, web searching, and system information retrieval.
Pipelock
Firewall for AI agents. MCP proxy that scans tool calls for credential leaks, prompt injection, and tool description poisoning.
Codex MCP Wrapper
An MCP server that wraps the OpenAI Codex CLI, exposing its functionality through the MCP API.
Credential Manager
A server for securely managing API credentials locally through the Model Context Protocol (MCP).
Remote MCP Server on Cloudflare (Authless)
An example of a remote MCP server deployable on Cloudflare Workers without authentication, featuring customizable tools.
Toolkit MCP Server
Provides system utilities and tools like IP geolocation, network diagnostics, system monitoring, crypto operations, and QR code generation.
Baidu iRAG MCP Server
Generate images using Baidu's iRAG API through a standardized MCP interface.
WinCC Unified MCP XT
An MCP server for interfacing with SIEMENS WinCC Unified SCADA systems via their GraphQL API.