Skip to main content
Glama
a-shipilo

bitrix24-mcp-server

by a-shipilo

project_board

Read-only

Get the kanban board for a project group, displaying stages in order with their tasks, including optional limits on task count and completed tasks.

Instructions

Канбан проекта: стадии по порядку и задачи на каждой стадии. Для скрама используйте sprint_board.

Input Schema

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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the safety profile is covered. The description adds useful behavioral context: stages appear in order and each stage shows its tasks, which is more specific than the annotations alone.

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 two short sentences with no filler. The core purpose is front-loaded, and the sibling routing is a separate, clearly scoped sentence.

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

Completeness5/5

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

For a read-only board view with a complete input schema and an output schema available, the description covers what the tool returns, how it differs from scrum boards, and its read-only nature via annotations. Nothing essential 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?

The input schema already fully describes all three parameters (group_id, max_tasks, include_completed), so the description does not need to add parameter details. The description adds no extra semantic information about parameters, which is acceptable given 100% schema coverage.

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 states that this tool provides a project kanban view with ordered stages and their tasks, which identifies the resource and content. It lacks an explicit verb like 'list' or 'get', but it does distinguish itself from sprint_board by naming the scrum alternative.

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 description explicitly says 'Для скрама используйте sprint_board', which tells the agent to use a sibling tool for scrum contexts. This is a clear when-not-to-use and alternative routing, leaving no ambiguity about when this board is appropriate.

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