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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。