Skip to main content
Glama
a-shipilo

bitrix24-mcp-server

by a-shipilo

tasks_list

Read-only

Find Bitrix24 tasks matching filters like status, project, kanban stage, or sprint, with options for sorting, pagination, and selecting specific fields.

Instructions

Найти задачи по фильтру. Поля в ответе в camelCase.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoСколько задач вернуть (1–50). По умолчанию 20.
orderNoСортировка, по умолчанию {"ID": "desc"}
startNoСмещение для постраничного вывода. По умолчанию 0.
filterNoФильтр в UPPER_CASE с префиксами >, >=, <, <=, !, %. Статусы (REAL_STATUS): 2 — ждёт выполнения, 3 — выполняется, 4 — ждёт контроля, 5 — завершена, 6 — отложена; STATUS: -1 — просрочена. GROUP_ID — проект, STAGE_ID — стадия канбана, SPRINT_ID и BACKLOG_ID — спринт и бэклог скрама. Пример: {"RESPONSIBLE_ID": 1, "!REAL_STATUS": 5, "<DEADLINE": "2026-10-01"}
selectNoКакие поля вернуть (UPPER_CASE)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, covering the safety profile. The description adds one useful behavioral note, 'Поля в ответе в camelCase', but doesn't elaborate on pagination, defaults, or other runtime behavior beyond what the schema already states.

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?

Two short sentences with no filler: the purpose is front-loaded and the camelCase note is a meaningful second sentence. Nothing repetitive.

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?

The rich schema (limit, order, start, filter, select), output schema, and annotations cover most operational details. The only notable gap is usage guidance for choosing this over sibling task tools, but nothing needed to make a correct call is missing.

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%, with detailed parameter docs including filter syntax, status semantics, defaults, and field selection. The description itself adds no parameter meaning, so baseline 3 applies.

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 starts with 'Найти задачи по фильтру' – a specific verb ('find'), resource ('tasks'), and scoping mechanism ('by filter'). This is clear, though it doesn't explicitly differentiate from task_get or other task_* siblings beyond the filter wording.

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?

No when-to-use vs alternatives guidance: it never mentions task_get for singular lookups or when this list is appropriate versus other list tools. The filter phrase implies a use case, but there are no exclusions or sibling routing instructions.

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