Skip to main content
Glama

bx24_workflows

Manage and automate Bitrix24 business processes and robots: create templates, start or terminate workflows, handle approval tasks, and control robots and activities.

Instructions

Bitrix24 business processes & robots: templates, instances, tasks, robots, activities. Methods bizproc.workflow., bizproc.workflow.template., bizproc.task., bizproc.robot., bizproc.activity.* (REST 1.0 + 3.0). RU/EN: бизнес-процесс, робот, запустить процесс, шаблон, задача БП,杀ить / workflow, business process, robot, start, template, kill.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoEntity ID
orderNoOrder object (e.g. { 'ID': 'DESC' })
startNoPagination offset (number of records to skip)
actionYesOperation to perform: - "template_list": List workflow templates - "template_get": Get a template by ID - "template_add": Add a workflow template - "template_update": Update a workflow template - "template_delete": Delete a workflow template (destructive) - "start": Start a workflow for a document (templateId, documentId) - "kill": Kill a running workflow (destructive) - "workflow_terminate": Terminate a workflow execution (graceful stop, destructive) - "task_list": List workflow tasks (approvals) - "task_complete": Complete a workflow task - "task_get": Get a workflow task by ID - "task_delegate": Delegate a workflow task to a user - "robot_list": List robots - "robot_add": Register an app robot - "robot_update": Update an app robot - "robot_delete": Delete an app robot (destructive) - "activity_list": List activities - "activity_get": Get an activity - "activity_add": Add an app activity - "activity_update": Update an app activity - "activity_delete": Delete an app activity (destructive) - "activity_log": Write a message to the workflow log - "event_send": Send robot/activity outputs to the workflow (bizproc.event.send) - "instance_list": List running workflow instances - "instance_terminate": Terminate a workflow instance (destructive)
filterNoFilter object (e.g. { '>OPPORTUNITY': 10000, 'STAGE_ID': 'WON' })
selectNoArray of field names to return (projection)
taskIdNoBP task ID
confirmNoSet to true to confirm destructive actions when BX24_CONFIRM_DESTRUCTIVE is enabled.
logFieldsNoLog message fields
documentIdNoDocument ID tuple, e.g. ['crm','DEAL',456]
parametersNoWorkflow parameters
taskFieldsNoTask fields (answer)
templateIdNoTemplate ID
eventFieldsNoEvent fields for bizproc.event.send
robotFieldsNoRobot fields: CODE, NAME, ...
activityFieldsNoActivity fields: CODE, NAME, ...

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are present, so the description carries the full behavioral burden. It only lists method groups and keywords; it does not disclose that many operations mutate state, which ones are destructive, what side effects starting or killing workflows has, or any authorization requirements. The schema's action labels mark some operations destructive, but the main description itself is nearly silent on behavior.

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 opening sentence is compact and front-loads the domain and method groups. However, the RU/EN keyword list adds noise, contains a malformed token ('杀ить'), and provides limited value to an AI agent deciding how to invoke the tool.

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

Completeness3/5

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

The schema is rich and documents all 25 actions with descriptions, which compensates for the sparse top-level description. Still, there is no output schema and no main-description guidance on return shapes, workflows vs tasks boundaries, or common usage patterns, so the definition is adequate but has clear gaps for such a complex multi-action tool.

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 baseline is 3. The top-level description adds no parameter-level meaning, but the action enum descriptions inside the schema provide detailed operation-specific parameter hints. The description does not need to duplicate what the schema already documents.

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 Bitrix24 business process domain and enumerates the main subresources (templates, instances, tasks, robots, activities) and REST method groups. It is broad rather than a single verb+resource, but that fits a multi-action tool and distinguishes it from the CRM/tasks/disk 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 scope implies when to use the tool: operations on Bitrix24 business processes and robots. However, it gives no explicit guidance about when not to use it, how it relates to bx24_tasks (regular tasks vs workflow tasks), or when an alternative sibling 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.