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 ServerList all deals in negotiation stage"
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
MCP-сервер для Bitrix24 CRM: подключите AI-агента к сделкам, контактам и чатам за 5 минут.
Bitrix24 MCP Server предоставляет стандартизированный Model Context Protocol интерфейс, через который любой AI-агент (Claude, GPT, DeepSeek, локальные LLM) может:
🔍 Искать контакты, сделки, лиды
📝 Создавать и обновлять CRM-сущности
💬 Отвечать в чатах Bitrix24 как обычный сотрудник
📋 Писать комментарии в таймлайн сделок
Всё через единый протокол. Без написания REST-обёрток. Без парсинга вебхуков. Один раз настроил — и забыл.
Быстрый старт (5 минут)
1. Установка
pip install bitrix24-mcp2. Настройка
Создайте входящий вебхук в Bitrix24 (права: crm, imbot, user) и пропишите URL:
export BITRIX_WEBHOOK_URL="https://your.bitrix24.ru/rest/1/your-token/"3. Запуск
bitrix24-mcpГотово. Сервер слушает stdio — можно подключать AI-клиент (Claude Desktop, Cursor, Hermes Agent).
Related MCP server: Bitrix24 MCP Server
Подключение AI-агента к чатам Bitrix24
Сервер включает готовый слой для чат-ботов (imbot):
from src.domain.entities.bot_event import BotIncomingMessage, BotReply
from src.application.services.chat_bot import ChatBotService
class MyAIAgent:
"""Ваш AI-агент. Единственное, что нужно написать."""
async def handle_message(self, message: BotIncomingMessage) -> BotReply:
# Вызовите свою LLM
answer = await my_llm.ask(message.text)
return BotReply(
text=answer,
# Опционально: дублировать в таймлайн сделки
timeline_comment=TimelineCommentTarget(
entity_type="deal",
entity_id=123
)
)
# Регистрация — остальное сервер берёт на себя
chat_bot_service.register_agent(bot_id, MyAIAgent())После регистрации ваш AI-агент появляется в общих чатах Bitrix24 как обычный сотрудник. Менеджер пишет — агент отвечает. Комментарии автоматически попадают в таймлайн.
MCP-инструменты
CRM: Контакты
Инструмент | Описание |
| Получить контакт по ID |
| Поиск по имени, телефону, email |
| Список с фильтрацией |
CRM: Сделки
Инструмент | Описание |
| Сделка по ID |
| Список с фильтрами (активные, по контакту) |
| Передвинуть сделку по воронке |
| Создать новую сделку |
CRM: Лиды
Инструмент | Описание |
| Создать лид |
| Список с поиском |
| Лид по ID |
Чат-бот
Инструмент | Описание |
| Зарегистрировать бота в портале |
| Подключить AI-агента к боту |
| Обработка входящих сообщений |
Задачи
Инструмент | Описание |
| Поиск задач |
| Создать задачу |
| Задача по ID |
MCP-ресурсы
AI-агент может запрашивать данные по URI:
Ресурс | Пример | Назначение |
|
| Данные контакта |
|
| Данные сделки |
|
| Все активные сделки |
Подключение к AI-клиентам
Claude Desktop
{
"mcpServers": {
"bitrix24": {
"command": "bitrix24-mcp",
"env": {
"BITRIX_WEBHOOK_URL": "https://your.bitrix24.ru/rest/1/token/"
}
}
}
}Hermes Agent
mcp_servers:
bitrix24:
transport: stdio
command: bitrix24-mcp
env:
BITRIX_WEBHOOK_URL: "https://your.bitrix24.ru/rest/1/token/"Cursor / VS Code
Добавьте в .cursor/mcp.json или настройки Cursor MCP.
Чат-бот: полный пример
export BOT_EVENT_HANDLER_URL="https://your-domain.example.com/bot/events"
python examples/custom_agent_example.pyСервер регистрирует бота, поднимает HTTP-обработчик вебхуков и подключает AI-агента. Подробнее: docs/source/ai_chat_agent.rst.
Архитектура
AI-клиент (Claude/DeepSeek/GPT)
│
▼ MCP (stdio)
┌───────────────────────┐
│ Bitrix24 MCP Server │
│ │
│ ┌─────────────────┐ │
│ │ MCP Handlers │ │ ← CRM: contacts, deals, leads
│ ├─────────────────┤ │
│ │ ChatBotService │ │ ← imbot: register, dispatch, reply
│ ├─────────────────┤ │
│ │ WebhookServer │ │ ← HTTP: приём событий Bitrix24
│ └─────────────────┘ │
└───────────┬───────────┘
│ REST API (fast_bitrix24)
▼
Bitrix24 CloudТребования
Python 3.12+
Входящий вебхук Bitrix24 (права:
crm,imbot,user)Для чат-бота: публичный HTTPS URL (ngrok, cloudflared, или любой хостинг) для приёма вебхуков
Лицензия
MIT. Подробности в LICENSE.
Ссылки
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
MCP server enabling AI agents to manage Bitrix24 features via standardized protocol
AI agent platform: manage leads, conversations, bots, calendar and CRM via MCP.
A CRM powered by your agent: contacts, deals, email, ads, and reports over MCP.
CRM + visual automation builder AI agents can drive via MCP: contacts, tags, maps, email/SMS flows.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables AI agents to interact with Bitrix24 CRM through comprehensive tools for managing contacts, deals, leads, companies, tasks, and users, with advanced filtering, search capabilities, and sales team performance monitoring.501333-
- FlicenseNot gradedqualityNot gradedmaintenanceEnables AI agents to interact with Bitrix24 CRM for managing contacts, deals, tasks, and leads via a comprehensive set of tools. It supports advanced features like sales team monitoring, performance analytics, and automated CRM searching.-
- FlicenseNot gradedqualityDmaintenanceA 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.13-
- FlicenseNot gradedqualityDmaintenanceMCP server for Bitrix24 CRM integration, enabling AI agents to manage contacts, deals, tasks, and more via natural language.13-
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/rusnetru/bitrix24-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server