Skip to main content
Glama
Ostor

Bitrix24 MCP Server

by Ostor

Bitrix24 MCP Server

๐Ÿ‡ฌ๐Ÿ‡ง English | ๐Ÿ‡ท๐Ÿ‡บ ะ ัƒััะบะฐั ะฒะตั€ัะธั

Version License

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.

  1. In the left menu of Bitrix24, go to Applications -> Developer resources -> Other -> Local application.

  2. Check the "Uses API" box.

  3. Mandatory: Add the following permissions (scopes):

    • crm (CRM)

    • task (Tasks)

    • tasks_extended (Extended Tasks)

    • note (Knowledge Base 2.0)

    • user (Users)

  4. For the Initial installation path and Webhook URL, you can specify your future server domain or simply https://localhost:3000.

  5. 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

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

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

  • F
    license
    -
    quality
    D
    maintenance
    A 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
  • F
    license
    -
    quality
    D
    maintenance
    Provides 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.
    9
    13
  • A
    license
    -
    quality
    D
    maintenance
    MCP server for amoCRM integration, enabling AI assistants to manage leads, contacts, companies, tasks, and more via natural language.
    3
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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