Skip to main content
Glama

bx24_events

Manage Bitrix24 event subscriptions and offline event queues. Bind webhook handlers to CRM events, list or cancel subscriptions, and process queued offline events.

Instructions

Bitrix24 event subscriptions + offline queue. Methods event.bind, event.get, event.unbind, event.offline.* (REST 1.0 + 3.0). RU/EN: события, подписка, webhook события, офлайн-очередь, отписаться / events, bind, subscription, offline queue, unbind.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
eventNoEvent name, e.g. onCrmLeadAdd
orderNoOrder object (e.g. { 'ID': 'DESC' })
startNoPagination offset (number of records to skip)
actionYesOperation to perform: - "bind": Subscribe a handler to an event - "unbind": Unsubscribe (destructive) - "get": List active subscriptions - "offline_list": List offline event queue - "offline_clear": Clear offline event queue (destructive) - "offline_execute": Execute offline event queue - "offline_error": Register an offline event processing error - "get_supported": List supported event names - "get_list": List subscriptions - "events_list": List all available event names
filterNoFilter object (e.g. { '>OPPORTUNITY': 10000, 'STAGE_ID': 'WON' })
selectNoArray of field names to return (projection)
confirmNoSet to true to confirm destructive actions when BX24_CONFIRM_DESTRUCTIVE is enabled.
handlerNoHandler URL
authTypeNoAuth type

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure, and it does not address destructive actions, confirmation requirements, authentication needs, rate limits, or side effects. It only lists method names and REST versions. The schema action descriptions mention destructive operations, but the natural-language description itself is behaviorally thin.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first sentence is compact and front-loaded with the core purpose. However, the second sentence is a redundant RU/EN keyword list that repeats information already present in the first sentence, adding noise without meaningful guidance. It is not badly structured, but it is not maximally efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a broad multi-action tool with 9 parameters, nested objects, no output schema, and no annotations, so the description alone is insufficient for an agent to call it correctly. It does not enumerate the full set of possible actions, explain destructive confirmations, or clarify return/offline-queue behavior. The agent must rely heavily on the schema to fill the gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, so the parameter semantics are already well documented. The description adds no parameter-level detail beyond listing method names, which mirrors the action enum. A baseline of 3 is appropriate because the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's domain: Bitrix24 event subscriptions and the offline queue. It names the concrete methods (event.bind, event.get, event.unbind, event.offline.*) and therefore gives an agent an immediate, specific sense of what the tool does. This also distinguishes it from the many CRM/module siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies that this tool is for event subscription management and offline queue operations, but it gives no explicit when-to-use guidance or exclusions relative to alternatives. Sibling tools are not event-focused, so there is no direct replacement to contrast, but the description still does not state conditions for choosing one action over another.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.