Skip to main content
Glama
aikts

Yandex Tracker MCP

Execute Issue Transition

issue_execute_transition

Change a Yandex Tracker issue's status by executing a valid transition ID from issue_get_transitions. Optionally set fields like resolution or assignee and add a comment.

Instructions

Execute a status transition for a Yandex Tracker issue. Call issue_get_transitions first and pass one of the ids it returned - the API rejects anything else. Returns the transitions available in the new status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsNoOptional dictionary of additional fields to set during the transition. Common fields include 'resolution' (e.g., 'fixed', 'wontFix') for closing issues, 'assignee' for reassigning, etc.
commentNoOptional comment to add when executing the transition.
issue_idYesIssue ID in the format '<project>-<id>', like 'SOMEPROJECT-1'
transition_idYesThe transition ID to execute. Must be one of the IDs returned by issue_get_transitions tool.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.6.3

TDQS

A4.4/5.0
Behavior4/5

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

Annotations only indicate readOnlyHint: false, so the description carries the burden of behavioral context. It adds that invalid transition IDs are rejected and that the tool returns the transitions available in the new status, giving the agent useful post-invocation expectations.

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 concise, front-loaded sentences communicate the action, prerequisite, constraint, and return behavior without extraneous detail. Every sentence earns its place.

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 description covers the core prerequisite, the API constraint, and the result of a successful call. Since an output schema exists, detailed return-value documentation is unnecessary. A small gap is not distinguishing this tool from sibling issue_close, but the core invocation context is complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents each parameter. The description adds meaningful value by emphasizing that transition_id must come from issue_get_transitions and by explaining the consequence of using an invalid ID, which is not fully captured in the schema.

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 states the tool executes a status transition for a Yandex Tracker issue, using a specific verb and resource. It also distinguishes itself from the read-only sibling issue_get_transitions by describing an action that changes state.

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

Usage Guidelines4/5

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

The description gives explicit usage guidance: call issue_get_transitions first and pass one of the returned IDs, warning that the API rejects anything else. It does not mention alternatives like issue_close or when to prefer this tool over other transition-related tools, so it stops short of a full 5.

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