The Yandex Tracker MCP Server enables AI assistants to interact with Yandex Tracker APIs, providing access to issues, queues, and other tracker resources through the Model Context Protocol (MCP). It supports secure authentication and can be integrated with various AI clients.
*.dxt
file from GitHub Releases for your OS and platform.The MCP server can be configured using either uvx yandex-tracker-mcp@latest
or the Docker image ghcr.io/aikts/yandex-tracker-mcp:latest
. Both require these environment variables:
TRACKER_TOKEN
- Your Yandex Tracker OAuth tokenTRACKER_IAM_TOKEN
- Your IAM tokenTRACKER_SA_KEY_ID
, TRACKER_SA_SERVICE_ACCOUNT_ID
, TRACKER_SA_PRIVATE_KEY
- Service account credentialsTRACKER_CLOUD_ORG_ID
or TRACKER_ORG_ID
- Your Yandex Cloud (or Yandex 360) organization IDConfiguration file path:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Using uvx:
{
"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"
}
}
}
}
Using Docker:
{
"mcpServers": {
"yandex-tracker": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "TRACKER_TOKEN",
"-e", "TRACKER_CLOUD_ORG_ID",
"ghcr.io/aikts/yandex-tracker-mcp:latest"
],
"env": {
"TRACKER_TOKEN": "your_tracker_token_here",
"TRACKER_CLOUD_ORG_ID": "your_cloud_org_id_here"
}
}
}
}
Using uvx:
claude mcp add yandex-tracker uvx yandex-tracker-mcp@latest \
-e TRACKER_TOKEN=your_tracker_token_here \
-e TRACKER_CLOUD_ORG_ID=your_cloud_org_id_here \
-e TRANSPORT=stdio
Using Docker:
claude mcp add yandex-tracker docker "run --rm -i -e TRACKER_TOKEN=your_tracker_token_here -e TRACKER_CLOUD_ORG_ID=your_cloud_org_id_here -e TRANSPORT=stdio ghcr.io/aikts/yandex-tracker-mcp:latest"
The MCP server provides the following tools:
queues_get_all
: List all available Yandex Tracker queuesqueue_get_local_fields
: Get local fields for a specific queuequeue_get_tags
: Get all tags for a specific queuequeue_get_versions
: Get all versions for a specific queueusers_get_all
: Get information about user accounts registered in the organizationuser_get
: Get information about a specific user by login or UIDuser_get_current
: Get information about the current authenticated userget_global_fields
: Get all global fields available in Yandex Trackerget_statuses
: Get all available issue statusesget_issue_types
: Get all available issue typesget_priorities
: Get all available issue prioritiesissue_get
: Retrieve detailed issue information by IDissue_get_url
: Generate web URL for an issueissue_get_comments
: Fetch all comments for an issueissue_get_links
: Get related issue linksissue_get_worklogs
: Retrieve worklog entriesissue_get_attachments
: Get attachments for an issueissue_get_checklist
: Get checklist items of an issueissues_find
: Search issues using Yandex Tracker Query Languageissues_count
: Count issues matching a queryThe MCP server can be run in streamable-http mode:
# Basic streamable-http server startup
TRANSPORT=streamable-http uvx yandex-tracker-mcp@latest
# With custom host and port
TRANSPORT=streamable-http \
HOST=localhost \
PORT=9000 \
uvx yandex-tracker-mcp@latest
The server supports multiple authentication methods in this priority order:
Dynamic OAuth Token (highest priority)
OAUTH_ENABLED=true
, OAUTH_CLIENT_ID
, OAUTH_CLIENT_SECRET
, MCP_SERVER_PUBLIC_URL
Static OAuth Token
TRACKER_TOKEN
Static IAM Token
TRACKER_IAM_TOKEN
Dynamic IAM Token (lowest priority)
TRACKER_SA_KEY_ID
, TRACKER_SA_SERVICE_ACCOUNT_ID
, TRACKER_SA_PRIVATE_KEY
# Authentication (use one of the methods described above)
# Organization Configuration (choose one)
TRACKER_CLOUD_ORG_ID=your_cloud_org_id # For Yandex Cloud organizations
TRACKER_ORG_ID=your_org_id # For Yandex 360 organizations
# Security - Restrict access to specific queues (optional)
TRACKER_LIMIT_QUEUES=PROJ1,PROJ2,DEV # Comma-separated queue keys
# Server Configuration
HOST=0.0.0.0 # Default: 0.0.0.0
PORT=8000 # Default: 8000
TRANSPORT=stdio # Options: stdio, streamable-http, sse
# Redis caching (optional)
TOOLS_CACHE_ENABLED=true # Default: false
TOOLS_CACHE_REDIS_TTL=3600 # Default: 3600 seconds (1 hour)
REDIS_ENDPOINT=localhost # Default: localhost
REDIS_PORT=6379 # Default: 6379
# Using environment file
docker run --env-file .env -p 8000:8000 ghcr.io/aikts/yandex-tracker-mcp:latest
# With inline environment variables
docker run -e TRACKER_TOKEN=your_token \
-e TRACKER_CLOUD_ORG_ID=your_org_id \
-p 8000:8000 \
ghcr.io/aikts/yandex-tracker-mcp:latest
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "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"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"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"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"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"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect