Skip to main content
Glama

bx24_hr

Manage Bitrix24 HR operations: list employees, get profiles by ID, invite new hires, dismiss, transfer, and retrieve HR info. Use REST actions to handle employee lifecycle tasks.

Instructions

Bitrix24 HR: employees + invitations. Methods humanresources.employee.*, user.add/update (REST 1.0 + 3.0). RU/EN: сотрудник, кадры, пригласить, уволить, перевести, профиль / employee, HR, invite, dismiss, transfer, profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoEntity ID
orderNoOrder object (e.g. { 'ID': 'DESC' })
startNoPagination offset (number of records to skip)
actionYesOperation to perform: - "employee_list": List employees - "employee_get": Get an employee by ID - "invite": Invite a new employee (user.add) - "dismiss": Dismiss an employee (user.update to inactive) — destructive - "transfer": Transfer an employee (update department/position) - "info": Get HR info for an employee
fieldsNoEmployee/user fields: NAME, LAST_NAME, EMAIL, UF_DEPARTMENT, WORK_POSITION
filterNoFilter object (e.g. { '>OPPORTUNITY': 10000, 'STAGE_ID': 'WON' })
selectNoArray of field names to return (projection)
userIdNoUser ID (numeric)
confirmNoSet to true to confirm destructive actions when BX24_CONFIRM_DESTRUCTIVE is enabled.

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?

With no annotations provided, the description carries the full burden of behavioral disclosure, but it only lists methods and bilingual keywords. It does not mention that actions like dismiss or transfer are mutating, that confirmations may be required, or what side effects these operations have.

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 compact and front-loaded with the tool's domain: 'Bitrix24 HR: employees + invitations.' The RU/EN keyword list adds useful multilingual searchability with only modest overhead, though the fragment style is slightly informal.

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?

For a tool with 9 parameters, nested objects, no annotations, and no output schema, this description is too thin. It does not explain prerequisites, response shapes, or the operational differences between actions sufficiently, leaving the agent dependent on the schema for most invocation decisions.

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% parameter coverage, including detailed descriptions of each action in the enum, so the description need not repeat parameter-level semantics. The main description adds no additional parameter meaning, which is acceptable given the schema's completeness.

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 states a clear scope: Bitrix24 HR, employees, and invitations, and names the underlying methods (humanresources.employee.*, user.add/update). However, it does not explicitly distinguish itself from sibling tools like bx24_users, and the overlap with user.add/update makes the boundary less sharp.

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?

There is no guidance on when to use this tool versus alternatives such as bx24_users or bx24_departments. The phrase 'employees + invitations' implies a context, but the description never states exclusions, prerequisites, or when a sibling tool would be more appropriate.

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