Bitrix24 MCP-DEV
Description
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…
About
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.
Details
- Author
- bitrix24
- Downloads
- 432
- Categories
- Developer Tools, Other, API, Knowledge Base, Automation, Search
Jump to
- Provides real-time Bitrix24 REST API methods and fields
- Accessible without authentication
- Reduces errors in AI-generated integration code
- Works with Cursor, VS Code, and Claude Desktop
- Supplies structured documentation instead of free text
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Bitrix24 MCP-DEVCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Connect by configuring the MCP server in your IDE with the URL https://mcp-dev.bitrix24.com/mcp and no authorization required. In Cursor, add it via Settings > Tools > New MCP server. In VS Code, create .vscode/mcp.json with the server URL and select the MCP agent in Copilot Chat. In Claude Desktop, add it through Settings > Integrations. No additional tools or dependencies are needed.
bitrix-search
Search Bitrix24 REST docs by natural-language query and return a short plain-text list of matches (method/event/article/app doc) with name, type, and brief description. Use the exact name/title from results when calling details tools. Optional filters: `limit` and `doc_type` (method|event|other|app_development_docs).
bitrix-app-development-doc-details
Fetch Bitrix24 app development documentation by exact title (use `bitrix-search` with doc_type app_development_docs). Returns plain text labeled fields (Title, URL, Module, Category, Description, Content) without Markdown.
bitrix-method-details
Get details for a Bitrix24 REST method by exact name (use `bitrix-search` first). Returns plain text with labeled sections including parameters, returns, errors, and examples. Optional `field` limits output; `filter` narrows params by entity or examples by language.
bitrix-article-details
Fetch a non-method Bitrix24 documentation article by exact title (use `bitrix-search` with doc_type other). Returns Markdown with title, metadata (URL/module/category), description, and content.
bitrix-event-details
Fetch Bitrix24 event documentation by exact event name (use `bitrix-search` with doc_type event). Returns Markdown with title, metadata (URL/module/category), description, and content.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"bitrix24 mcp-dev": {
"b24-dev-mcp": {
"url": "https://mcp-dev.bitrix24.com/mcp",
"timeout": 30000
}
}
}
}
McpServers
{
"b24-dev-mcp": {
"url": "https://mcp-dev.bitrix24.com/mcp",
"timeout": 30000
}
}
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.
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.
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
``Select the configured MCP agent in the chat. Copilot will request context from MCP when generating code.
Claude Desktop, Anthropic
1. Go to Settings > Integrations.
2. Click Add integration.
3. Fill in the fields:
4.
Name: b24-dev-mcp;
URL: https://mcp-dev.bitrix24.com/mcp.
4. 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.
1. Send a request in the chat with the AI assistant — "Write a curl request to create a lead in Bitrix24. Use b24-dev-mcp."
2. The assistant will refer to the MCP server.
3. MCP will return information about the method and its parameters from the documentation.
4. The assistant will generate code based on the MCP response.
GitHub Copilot Chat, VS Code
Feature: it is necessary to select MCP as the agent to execute the request.
1. 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."
2. Copilot will automatically use the selected MCP agent.
3. MCP will return information about the method and its parameters from the documentation.
4. The assistant will generate code based on the MCP response.
Claude Desktop, Anthropic
Feature: automatic determination of the need to use MCP.
1. 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."
2. Claude will determine that data from the connected MCP is needed and will send the request.
3. MCP will return information about the method and its parameters from the documentation.
4. 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.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





