issue_get_links
Retrieve linked issues for a specific Yandex Tracker issue using its ID. Facilitates efficient issue tracking and related tasks by accessing connected issue details.
Instructions
Get a Yandex Tracker issue related links to other issues by its id
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | Issue ID in the format '<project>-<id>', like 'SOMEPROJECT-1' |
Implementation Reference
- mcp_tracker/mcp/tools.py:243-255 (handler)The handler function for the 'issue_get_links' MCP tool. It checks the issue ID against allowed queues, then fetches the links using the issues protocol client.@mcp.tool( description="Get a Yandex Tracker issue related links to other issues by its id" ) async def issue_get_links( ctx: Context[Any, AppContext], issue_id: IssueID, ) -> list[IssueLink]: check_issue_id(settings, issue_id) return await ctx.request_context.lifespan_context.issues.issues_get_links( issue_id, auth=get_yandex_auth(ctx), )
- mcp_tracker/mcp/server.py:166-166 (registration)Calls register_tools to define and register all tools on the FastMCP server instance, including the issue_get_links tool.register_tools(settings, mcp)