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 the AI assistant in the development environment 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
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:
- obtaining relevant API methods and fields for a specific task,
- working with structured data instead of free text,
- reducing the number of errors and code corrections.
How to Connect to the MCP Server
Specify the server address https://mcp-dev.bitrix24.com/mcp in the development environment settings.
The server is accessible without authorization.
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.com/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. When you click the button below, you will be redirected to Cursor. It will automatically open and prompt you to add a server with a pre-filled configuration.
<a href="https://cursor.com/en-US/install-mcp?name=b24-dev-mcp&config=eyJ1cmwiOiJodHRwczovL21jcC1kZXYuYml0cml4MjQuY29tL21jcCIsInRpbWVvdXQiOjMwMDAwfQ%3D%3D"><img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add b24-dev-mcp MCP server to Cursor" height="32" /></a>
GitHub Copilot Chat, VS Code
- For setup, use the instructions from GitHub.
- Create a file
.vscode/mcp.jsonin 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
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.com/mcp.
- Save the settings. Claude will automatically determine when to use MCP.
Gemini Code Assist CLI
- Add the MCP server with the command:
gemini mcp add --transport http b24-dev-mcp https://mcp-dev.bitrix24.com/mcp
- Check that the server appears in the list with the command
gemini mcp list. Gemini will automatically determine when to use MCP.
Request Examples
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.
Cursor
Feature: It is necessary to connect 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 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 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.
-
Execute the command
gemini chatand send a request — "Gather acurlrequest to create a lead with fields name, phone, and source 'site'." -
Gemini will determine that data from the connected MCP is needed and will 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.
Related Servers
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
Background Process MCP
A server that provides background process management capabilities, enabling LLMs to start, stop, and monitor long-running command-line processes.
Skills-ContextManager
Don’t pollute your AI agent’s context with 1,000 skills. Use Skills-ContextManager, a self-hosted web UI for managing AI skills and workflows by providing skills to an AI agent via MCP only when needed. Simply add skills to your library and enable or disable them with a toggle. Choose whether a skill is always loaded into context or dynamically activated when the AI agent determines it’s needed.
EVE Online ESI MCP Server
An MCP server for interacting with the EVE Online ESI (EVE Swagger Interface) API.
GraphQL MCP Server
A strongly-typed MCP server that provides seamless access to any GraphQL API.
Authless Remote MCP Server
A remote MCP server deployable on Cloudflare Workers that does not require authentication. The server can be customized by defining tools.
Code Editor
Enables AI assistants to write, edit, and manage code files directly in a specified directory, respecting .gitignore patterns.
Process Manager MCP
Manage system processes (start, stop, restart, monitor) via an MCP interface with automatic cleanup.
Page Design Guide MCP Server
MCP server providing modern web design guidance, color psychology, typography, layout patterns, and UI best practices for AI assistants
SCMCP
A natural language interface for single-cell RNA sequencing (scRNA-Seq) analysis, supporting various modules from IO to enrichment.
Unity MCP
An MCP server and plugin for connecting the Unity Editor and games to MCP clients like Claude Desktop.