Skip to main content
Glama

bx24_im_chat

Create and manage Bitrix24 chats: set titles, colors, avatars, owners, add or remove members, send and edit messages, search history, and mute notifications.

Instructions

Bitrix24 chats: create, members, owner, title/color/avatar, mute, messages, counters. Methods im.chat., im.dialog. (REST 1.0 + 3.0). RU/EN: чат, создать чат, участники, переименовать, замуть / chat, create chat, members, rename, mute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileNoFile to upload: NAME, CONTENT base64
COLORNoChat color (hex)
TITLENoChat title
USERSNoUser IDs
AVATARNoAvatar (base64-encoded image)
SEARCHNoSearch string
actionYesOperation to perform: - "add": Create a chat (fields: TYPE, TITLE, USERS) - "get": Get chat info by CHAT_ID - "updateTitle": Rename a chat - "updateColor": Change chat color - "updateAvatar": Change chat avatar - "setOwner": Set a new chat owner - "setManager": Set/unset a chat manager (USER_ID) - "user_add": Add users (USERS array) - "user_list": List chat users - "user_delete": Remove users (destructive) - "leave": Leave a chat (destructive) - "mute": Mute/unmute a chat (MUTE_ACTION) - "sendMessage": Send a message (DIALOG_ID=CHAT_ID, MESSAGE) - "editMessage": Edit a message (MESSAGE_ID, MESSAGE) - "deleteMessage": Delete a message (destructive) - "searchMessages": Search messages in a chat - "readAll": Mark chat read - "uploadFile": Upload a file to a chat - "getCounters": Get chat counters
fieldsNoChat fields: TYPE:'chat', TITLE, USERS:[...], AVATAR, EXTRANET
CHAT_IDNoChat ID
MESSAGENoMessage text
USER_IDNoUser ID
confirmNoSet to true to confirm destructive actions when BX24_CONFIRM_DESTRUCTIVE is enabled.
MESSAGE_IDNoMessage ID
MUTE_ACTIONNoMute action
MANAGER_ACTIONNoManager action: set or unset

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only lists capabilities and API method families, without mentioning that some actions are destructive, require confirmation, or have other side effects. The schema's action enum flags destructive actions, but the description itself does not reinforce this.

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

Conciseness4/5

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

The description is a single compact sentence that front-loads the main feature areas and API method families. The RU/EN search-alias tail adds some redundancy but does not substantially hurt readability.

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 complex multi-action tool with 15 parameters, nested objects, no annotations, and no output schema. The description is too thin to fully orient an agent: it omits when to use the tool, how destructive actions are handled, and what callers should expect in return.

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?

Schema description coverage is 100%, so the input schema already documents all 15 parameters. The description adds no new parameter-level meaning beyond the action list, which matches the schema's action enum descriptions. Baseline 3 is appropriate.

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

Purpose4/5

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

The description clearly identifies the tool as managing Bitrix24 chats and lists the major operations: create, members, owner, title/color/avatar, mute, messages, and counters. It is distinguishable from siblings like bx24_im by focusing specifically on chat operations, though it lacks a single explicit verb phrase like 'Manage Bitrix24 chats.'

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as bx24_im or bx24_openlines. It does not state exclusions, prerequisites, or conditions that would route an agent to a sibling tool.

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