Bitrix24 MCP Server
MCP server for integrating AI assistants with Bitrix24, enabling retrieval and management of CRM entities, tasks, scrum, and knowledge bases through natural language.
README
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.
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 install
Create 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.com
Step 3. Running the Server
You can run the server in two ways:
Option A: Using Node.js
npm run build
npm start
For background execution on a server, we recommend using pm2:
pm2 start dist/index.js --name bitrix24-mcp-server
Option B: Using Docker
docker-compose up -d
The 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.