Bitrix24 MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bitrix24 MCP ServerShow me the latest deals in CRM"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bitrix24 MCP Server
๐ฌ๐ง English | ๐ท๐บ ะ ัััะบะฐั ะฒะตััะธั
This project is a Model Context Protocol (MCP) server for integrating AI assistants (like Anthropic's Claude) with your Bitrix24 portal. The server enables Large Language Models to directly retrieve data, manage CRM entities, tasks, and knowledge bases through a standardized API.
Features (Tools)
The server provides AI with the following tools:
CRM: Deals (read, list), Contacts (read, list).
Tasks: Read tasks, list, create, update, close, add comments.
Scrum: View epics and bind tasks to epics.
Knowledge Base (2.0): Read knowledge bases, view structure, create, edit, and retrieve pages in Markdown format.
Company Structure: Retrieve information about the current user.
Related MCP server: Bitrix24 MCP Server
Requirements
Node.js >= 22 (or Docker)
Administrator rights in your Bitrix24 portal (to create the integration)
Anthropic Claude Desktop (or another MCP-compatible client)
Installation and Setup
Step 1. Create a Local Application in Bitrix24
For the server to communicate with your portal, you need to create an integration.
In the left menu of Bitrix24, go to Applications -> Developer resources -> Other -> Local application.
Check the "Uses API" box.
Mandatory: Add the following permissions (scopes):
crm(CRM)task(Tasks)tasks_extended(Extended Tasks)note(Knowledge Base 2.0)user(Users)
For the Initial installation path and Webhook URL, you can specify your future server domain or simply
https://localhost:3000.Save the application and write down the Application Code (Client ID) and Application Key (Client Secret).
Step 2. Server Setup
Clone the repository and install dependencies:
git clone https://github.com/yourusername/bitrix24-mcp-server.git
cd bitrix24-mcp-server
npm installCreate a .env file in the project root (or copy .env.example) and fill in the details:
PORT=3000
BITRIX24_CLIENT_ID=your_client_id
BITRIX24_CLIENT_SECRET=your_client_secret
BITRIX24_PORTAL_URL=https://yourcompany.bitrix24.comStep 3. Running the Server
You can run the server in two ways:
Option A: Using Node.js
npm run build
npm startFor background execution on a server, we recommend using pm2:
pm2 start dist/index.js --name bitrix24-mcp-serverOption B: Using Docker
docker-compose up -dThe server will start on port 3000 and will be ready to accept SSE connections.
Step 4. Configuring Claude Desktop (Client)
If you are running this server remotely (e.g., on a VPS) and want to connect it to your local Claude Desktop app, you will need to forward the port or set up an Nginx Reverse Proxy.
In your Claude configuration file (claude_desktop_config.json on MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json), add the following:
{
"mcpServers": {
"bitrix24": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/inspector",
"http://your-server-address:3000/sse"
]
}
}
}Note: This example uses the built-in inspector if you want to connect via HTTP SSE. If running the server locally, you can use command: "node", args: ["/path/to/bitrix24-mcp-server/dist/index.js"] (if the server supports stdio transport).
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA comprehensive MCP server for Bitrix24 CRM integration that enables AI agents to manage contacts, deals, tasks, leads, and companies. It also provides advanced tools for sales team monitoring, performance analytics, and automated CRM search capabilities.9
- Flicense-qualityDmaintenanceProvides a REST API and MCP server to interact with Bitrix24 CRM, enabling CRUD operations on entities like deals, leads, contacts, and tasks via natural language.913
- Flicense-qualityDmaintenanceMCP server for Bitrix24 CRM integration, enabling AI agents to manage contacts, deals, tasks, and more via natural language.9
- Alicense-qualityDmaintenanceMCP server for amoCRM integration, enabling AI assistants to manage leads, contacts, companies, tasks, and more via natural language.3MIT
Related MCP Connectors
MCP server for Gainium โ manage trading bots, deals, and balances via AI assistants
MCP server for LeadDelta โ manage LinkedIn connections and CRM data via AI assistants.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ostor/bitrix24-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server