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.
MCP Server for Working with Bitrix24 REST API
When a developer asks an AI assistant in an IDE, such as Cursor or VS Code, to write code for integration with Bitrix24, the neural network may suggest non-existent methods or pass unnecessary parameters. MCP provides the assistant with direct access to up-to-date documentation, making the responses more accurate.
What is MCP
Model Context Provider is a server that transmits structured data to the AI assistant: method descriptions, parameter lists, acceptable values, and usage hints.
MCP allows you to:
- obtain relevant API methods and fields for a specific task,
- work with structured data instead of free text,
- reduce the number of errors and code corrections.
How to Connect to the MCP Server
Server address: https://mcp-dev.bitrix24.com/mcp
The server is accessible without authorization.
Cursor
- Open Settings > Tools > New MCP server.
- Add the configuration:
"b24-dev-mcp": {
"url": "https://mcp-dev.bitrix24.com/mcp",
"timeout": 30000
}
- Save the settings. A green indicator and a list of available tools will appear next to the server.
- When composing a request, explicitly instruct the assistant: "Use
b24-dev-mcp
."
GitHub Copilot Chat, VS Code
- For setup, use the instructions from GitHub.
- Create a file
.vscode/mcp.json
in the root of the project. The content of the file:
{
"servers": {
"b24-dev-mcp": {
"url": "https://mcp-dev.bitrix24.com/mcp",
"type": "http"
}
},
"inputs": []
}
- Start the MCP agent by clicking the
Start
button that will appear in the.vscode/mcp.json
file. - Select the configured MCP agent in the chat. Copilot will request context from MCP when generating code.
Claude Desktop, Anthropic
- Go to Settings > Integrations.
- Click
Add integration
. - Fill in the fields:
Name
:b24-dev-mcp
;URL
:https://mcp-dev.bitrix24.com/mcp
.
- Save the settings. Claude will automatically determine when to use MCP.
Example Requests
The MCP server automatically provides the assistant with up-to-date Bitrix24 REST API data, but the ways to interact between the IDE and MCP vary.
Cursor
Feature: requires explicit instruction to use the MCP server.
- Send a request in the chat with the AI assistant — "Write a
curl
request to create a lead in Bitrix24. Useb24-dev-mcp
." - The assistant will refer to 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 to execute 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: automatic determination of the need 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 will 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.
Conclusion
The MCP server helps AI assistants work with the current methods of the Bitrix24 REST API. This reduces the number of errors when generating code. Connect the MCP server to speed up the development of integrations.
Related Servers
Moatless MCP Server
An advanced code analysis and editing server with semantic search capabilities using vector embeddings.
Google Jules MCP
Automate Google Jules, the AI coding assistant, for tasks like code reviews, repository management, and AI-powered development workflows.
MCP-Haskell
A complete Model Context Protocol (MCP) implementation for Haskell, supporting both StdIO and HTTP transport.
MCP Prompt Optimizer
Optimize prompts with research-backed strategies for 15-74% performance improvements.
SJ RedM MCP Server
A versatile MCP server for RedM development, providing access to RDR3 discoveries, framework documentation, native functions, and database operations.
GameCode MCP2
A Model Context Protocol (MCP) server for tool integration, configured using a tools.yaml file.
DevBrain
Finds relevant code snippets, developer articles, and blog posts based on your queries.
Devcontainers
Integrates with the devcontainers CLI to manage development containers. Requires Docker.
AI Intervention Agent
An MCP server for real-time user intervention in AI-assisted development workflows.
Nuxt MCP
MCP server helping models to understand your Vite/Nuxt app better.