Bitrix MCP

Tags

registry.modelcontextprotocol.io

Configuration

{
  "mcpServers": {
    "bitrix-mcp-rest": {
      "url": "https://mcp-dev.bitrix24.com/mcp",
      "type": "http"
    }
  },
  "requiresAuth": false,
  "requiresOAuth": false
}

Available Tools (5)

bitrix-search

Search Bitrix24 REST docs by natural-language query and return a short plain-text list of matches (method/event/article/app doc) with name, type, and brief description. Use the exact name/title from results when calling details tools. Optional filters: `limit` and `doc_type` (method|event|other|app_development_docs).

Input Schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "limit": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null
    },
    "query": {
      "type": "string"
    },
    "doc_type": {
      "anyOf": [
        {
          "type": "array",
          "items": {
            "enum": [
              "method",
              "event",
              "other",
              "app_development_docs"
            ],
            "type": "string"
          }
        },
        {
          "type": "null"
        }
      ],
      "default": null
    }
  }
}

bitrix-app-development-doc-details

Fetch Bitrix24 app development documentation by exact title (use `bitrix-search` with doc_type app_development_docs). Returns plain text labeled fields (Title, URL, Module, Category, Description, Content) without Markdown.

Input Schema
{
  "type": "object",
  "required": [
    "title_or_hint"
  ],
  "properties": {
    "title_or_hint": {
      "type": "string"
    }
  }
}

bitrix-method-details

Get details for a Bitrix24 REST method by exact name (use `bitrix-search` first). Returns plain text with labeled sections including parameters, returns, errors, and examples. Optional `field` limits output; `filter` narrows params by entity or examples by language.

Input Schema
{
  "type": "object",
  "required": [
    "method"
  ],
  "properties": {
    "field": {
      "type": "string",
      "default": "all"
    },
    "filter": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null
    },
    "method": {
      "type": "string"
    }
  }
}

bitrix-article-details

Fetch a non-method Bitrix24 documentation article by exact title (use `bitrix-search` with doc_type other). Returns Markdown with title, metadata (URL/module/category), description, and content.

Input Schema
{
  "type": "object",
  "required": [
    "title_or_hint"
  ],
  "properties": {
    "title_or_hint": {
      "type": "string"
    }
  }
}

bitrix-event-details

Fetch Bitrix24 event documentation by exact event name (use `bitrix-search` with doc_type event). Returns Markdown with title, metadata (URL/module/category), description, and content.

Input Schema
{
  "type": "object",
  "required": [
    "title_or_hint"
  ],
  "properties": {
    "title_or_hint": {
      "type": "string"
    }
  }
}
Bitrix MCP by io.github.bitrix24 | RouterMCP