Skip to main content
Glama

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
NameRequiredDescriptionDefault
issue_idYesIssue ID in the format '<project>-<id>', like 'SOMEPROJECT-1'

Implementation Reference

  • 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), )
  • Calls register_tools to define and register all tools on the FastMCP server instance, including the issue_get_links tool.
    register_tools(settings, mcp)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aikts/yandex-tracker-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server