Yandex Tracker MCP Server

A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with Yandex Tracker APIs. This server provides secure

Local serverstdio

What is the Yandex Tracker MCP MCP server?

A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with Yandex Tracker APIs. This server provides secure, authenticated access to Yandex Tracker issues, queues, comments, worklogs, and search. That is what the yandex tracker mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  • Complete Queue Management — List and access all available Yandex Tracker queues with pagination support, tag retrieval, and detailed metadata
  • User Management — Retrieve user account information, including login details, email addresses, license status, and organizational data
  • Full Issue Lifecycle — Create, read, update, and manage issues with support for custom fields, attachments, and workflow transitions
  • Status Workflow Management — Execute status transitions, close issues with resolutions, and navigate complex workflows
  • Field Management — Access global fields, queue-specific local fields, statuses, issue types, priorities, and resolutions
  • Advanced Query Language — Full Yandex Tracker Query Language support with complex filtering, sorting, and date functions

Getting it running

Installation goes through your MCP client rather than a global install: point it at yandex-tracker-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 4 tools. What each one is for:

  • Parameters — - fields (optional): Fields to include in the response (e.g., ["key", "name"]). Helps optimize context window usage by selecting only needed fields
  • Returnshttps://tracker.yandex.ru/{issue_id}
  • Installation — 1. Download the *.mcpb file from GitHub Releases. 2. Double-click the downloaded file
  • Prerequisites — The following sections show how to configure the MCP server for different AI clients. You can use either uvx yandex-tracker-mcp@latest or the Docker

What it needs from you

Configuration is passed through the environment: TRACKER_TOKEN, TRACKER_CLOUD_ORG_ID, TRACKER_ORG_ID, TRANSPORT, TRACKER_IAM_TOKEN, TRACKER_SA_KEY_ID, TRACKER_SA_SERVICE_ACCOUNT_ID, TRACKER_SA_PRIVATE_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • uv installed globally - Valid Yandex Tracker API token with appropriate permissions The following sections show how to configure the MCP server for different AI clients. You can use either uvx yandex-tracker-mcp@latest or the Docker image ghcr.io/aikts/yandex-tracker-mcp:latest. Both require these environment variables: -

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Yandex Tracker MCP's toolset — Parameters, Returns, Installation and 1 more — is a fair guide to whether it matches your workflow. It is maintained by aikts; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
Parameters- fields (optional): Fields to include in the response (e.g., ["key", "name"]). Helps optimize context window usage by selecting only needed fields. If not specified, returns all available fields.
Returnshttps://tracker.yandex.ru/{issue_id}
Installation1. Download the *.mcpb file from [GitHub Releases](https://github.com/aikts/yandex-tracker-mcp/releases/latest). 2. Double-click the downloaded file to install it in Claude Desktop. 3. Provide your Yandex Tracker OAuth t
PrerequisitesThe following sections show how to configure the MCP server for different AI clients. You can use either uvx yandex-tracker-mcp@latest or the Docker image ghcr.io/aikts/yandex-tracker-mcp:latest. Both require these envir

How to install the Yandex Tracker MCP MCP server

{
  "mcpServers": {
    "yandex-tracker": {
      "command": "uvx",
      "args": ["yandex-tracker-mcp@latest"],
      "env": {
        "TRACKER_TOKEN": "your_tracker_token_here",
        "TRACKER_CLOUD_ORG_ID": "your_cloud_org_id_here",
        "TRACKER_ORG_ID": "your_org_id_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • uv installed globally - Valid Yandex Tracker API token with appropriate permissions The following sections show how to configure the MCP server for different AI clients. You can use either uvx yandex-tracker-mcp@latest or the Docker image ghcr.io/aikts/yandex-tracker-mcp:latest. Both require these environment variables: -
VariableDescriptionRequired
TRACKER_TOKENCredential the server authenticates with.Yes
TRACKER_CLOUD_ORG_IDConfiguration value read at startup.Optional
TRACKER_ORG_IDConfiguration value read at startup.Optional
TRANSPORTConfiguration value read at startup.Optional
TRACKER_IAM_TOKENCredential the server authenticates with.Yes
TRACKER_SA_KEY_IDCredential the server authenticates with.Yes
TRACKER_SA_SERVICE_ACCOUNT_IDConfiguration value read at startup.Optional
TRACKER_SA_PRIVATE_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Yandex Tracker MCP to Parameters.
  • Use Yandex Tracker MCP to Returns.
  • Use Yandex Tracker MCP to Installation.

Frequently asked questions

It connects Yandex Tracker MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Parameters, Returns, Installation, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Yandex Tracker MCP directly.