Skip to main content
Glama

bx24_call

Invoke any Bitrix24 REST method by name with custom parameters to access functionality not covered by dedicated tools. Use as a fallback for REST 1.0 and 3.0 methods.

Instructions

Universal Bitrix24 REST call: invoke any REST method by name with arbitrary params. Escape-hatch for methods not covered by dedicated tools (REST 1.0 + 3.0). RU/EN: вызови метод, сделай произвольный вызов, вызови rest-метод / call rest method, invoke method, raw rest call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
methodYesBitrix24 REST method name, e.g. 'crm.lead.list', 'im.chat.get', 'disk.folder.getchildren'.
paramsNoAdditional method-specific params object
confirmNoSet to true to confirm destructive methods when BX24_CONFIRM_DESTRUCTIVE is enabled.
httpVerbNoHTTP verb (default POST if params present, else GET)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It conveys a raw, passthrough nature ('invoke any REST method', 'arbitrary params') but does not mention response format, destructiveness, or the confirm parameter's role. The schema provides confirm details, but the description itself offers little safety or outcome context.

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

Conciseness5/5

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

The core function and usage condition are stated in two front-loaded sentences. The RU/EN synonym list is compact and useful for multilingual intent matching without bloating the description.

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

Completeness4/5

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

For a universal 4-parameter tool with dynamic output, the description covers purpose and use-case routing well. It lacks an explicit note that responses are raw REST responses, which would be valuable since no output schema exists. Still, the schema covers all parameter semantics, making this mostly complete.

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 description's 'arbitrary params' aligns with the schema but adds no meaning beyond the per-parameter descriptions already present.

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 states a specific verb and resource: 'invoke any REST method by name with arbitrary params'. It clearly brands itself as an 'escapade-hatch' and 'Universal Bitrix24 REST call', which distinguishes it from the dedicated sibling wrappers by scope.

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

Usage Guidelines5/5

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

The phrase 'Escape-hatch for methods not covered by dedicated tools' explicitly tells an agent when to use this tool and implies when not to use it. This provides a clear routing rule without needing to enumerate each sibling tool.

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