Skip to main content
Glama

issue_get_url

Retrieve the URL of a Yandex Tracker issue by providing its ID in the format '-'. Access and manage issue details directly through the Yandex Tracker MCP server.

Instructions

Get a Yandex Tracker issue url by its id

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issue_idYesIssue ID in the format '<project>-<id>', like 'SOMEPROJECT-1'

Implementation Reference

  • The core handler function for the 'issue_get_url' tool. It takes an issue_id and returns the direct URL to the Yandex Tracker issue.
    @mcp.tool(description="Get a Yandex Tracker issue url by its id") async def issue_get_url( issue_id: IssueID, ) -> str: return f"https://tracker.yandex.ru/{issue_id}"
  • Pydantic schema definition for the input parameter 'issue_id' used by the tool.
    IssueID = Annotated[ str, Field(description="Issue ID in the format '<project>-<id>', like 'SOMEPROJECT-1'"), ]
  • Invocation of register_tools function, which defines and registers the issue_get_url tool (among others) with the MCP server instance.
    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