Skip to main content
Glama

bx24_crm_quotes

Manage Bitrix24 CRM quotes to handle the full quote lifecycle: create, retrieve, update, delete, manage product rows and contacts, and configure custom fields.

Instructions

Bitrix24 CRM quotes (коммерческие предложения): CRUD, product rows, contact bindings, user fields. Methods crm.quote., crm.quote.productrows., crm.quote.contact., crm.quote.userfield. (REST 1.0 + 3.0). RU/EN: коммерческое предложение, КП, создать КП / quote, create quote, proposal.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoCRM quote ID
rowsNoProduct row array: {PRODUCT_ID, PRICE, QUANTITY, ...}
orderNoOrder object (e.g. { 'ID': 'DESC' })
startNoPagination offset (number of records to skip)
actionYesOperation to perform: - "add": Create a quote (TITLE required) - "get": Get a quote by ID - "list": List/filter quotes - "update": Update quote fields - "delete": Delete a quote (destructive) - "fields": Describe quote fields - "productrows_get": Get quote product rows - "productrows_set": Overwrite quote product rows (destructive — full rewrite) - "contact_add": Bind a contact to a quote - "contact_delete": Unbind a contact (destructive) - "contact_items_get": List contacts bound to a quote - "contact_items_set": Set contact bindings - "userfield_get": Get a custom quote field - "userfield_add": Create a custom quote field - "userfield_update": Update a custom quote field - "userfield_delete": Delete a custom quote field (destructive)
fieldsNoQuote fields: TITLE (required), OPPORTUNITY, CURRENCY_ID, COMPANY_ID, CONTACT_ID, ASSIGNED_BY_ID, STATUS_ID, CLOSED.
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.
contactIdNoContact ID (CRM)
userfieldNoUser field definition: FIELD_NAME, USER_TYPE_ID, LABEL
contactIdsNoContact IDs to bind
userfieldIdNoCRM userfield ID (e.g. UF_CRM_123)

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, the description carries the full behavioral disclosure burden, but it only lists operation categories like 'CRUD' and product rows. It does not mention that quotes can be deleted, that product rows may be fully overwritten, or that contact unbinding is destructive; the schema's action enum flags some actions as destructive, but the top-level description itself lacks this transparency.

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 description is a single dense sentence with no filler. It front-loads the resource and operation families, then adds API method names and multilingual terms, all of which are useful for an agent; every element earns its place.

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 13-parameter, 16-action tool with no annotations and no output schema, yet the description only summarizes scope. It omits return-value expectations, prerequisites for actions, side-effect ordering, and how to choose among the many embedded actions, leaving substantial context for the agent to infer from the schema alone.

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?

Input schema description coverage is 100%, so the baseline is 3; every parameter already has a meaningful description. The tool description adds only high-level domain context and does not enhance parameter semantics beyond what the schema provides.

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 a specific resource (Bitrix24 CRM quotes) and enumerates the operation families: CRUD, product rows, contact bindings, and user fields. It also names the corresponding API method groups, making the tool's scope unmistakable and distinct from sibling CRM tools like deals, contacts, or invoices.

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 the many sibling CRM tools, such as bx24_crm_deals or bx24_crm_invoices. Usage context is only implied through the word 'quotes' and the listed method families; there are no exclusions or alternative tool references.

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