Skip to main content
Glama
a-shipilo

bitrix24-mcp-server

by a-shipilo

scrum_backlog

Read-only

Fetch a project's scrum backlog ordered by priority, including story points and epics. Specify the group ID and optionally limit the number of tasks.

Instructions

Бэклог скрама в порядке приоритета, со story points и эпиками.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
group_idYesID проекта, группы или скрама (из projects_list)
max_tasksNoСколько задач загрузить максимум. По умолчанию 100.

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, so the agent knows it is a read operation. The description adds context about ordering and included fields (story points, epics), which is useful but does not go beyond that. No contradiction with annotations.

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?

A single concise sentence that clearly states the purpose with no redundancy. It is front-loaded with the core information and is appropriately sized for a simple list tool.

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 read-only list tool with an output schema, annotations covering safety, and fully documented parameters, the description covers the essential content (priority order, story points, epics). It is adequate for an agent to call it correctly, though it could mention it returns tasks or list, but that is implied.

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?

Both parameters (group_id, max_tasks) are fully documented in the schema (100% coverage). The description adds no additional semantic meaning about parameters beyond what the schema already provides.

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 the resource (scrum backlog) and its organization (priority order) and content (story points, epics). It is specific enough to distinguish from sibling tools like scrum_sprints or sprint_board, though it lacks an explicit verb like 'list' or 'get'.

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 guidance on when to use this tool versus alternatives like scrum_sprints or tasks_list. The description does not mention any conditions, exclusions, or alternative tools.

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