The Yandex Tracker MCP Server enables AI assistants to interact with Yandex Tracker APIs for comprehensive project management:
- Queue Management: Access queues and their local fields, tags, and versions
- User Management: Retrieve user account information and organizational details
- Issue Operations: Get detailed issue information, comments, links, worklogs, and attachments
- Search Capabilities: Use Yandex Tracker Query Language for advanced filtering and counting
- Field Management: Access global fields, statuses, and issue types
- Performance Optimization: Optional Redis caching for improved response times
- Security Features: Configurable queue access restrictions and secure token handling
- Integration Support: Compatible with various AI clients, Yandex Cloud and Yandex 360 organizations
Allows GitHub Copilot to connect to Yandex Tracker via VS Code integration, with support for both workspace and global configurations.
Optional integration with Redis for performance caching, improving response times when retrieving Yandex Tracker data.
Provides comprehensive access to Yandex Tracker APIs, enabling management of issues, queues, comments, worklogs, and search functionality. Supports both Yandex Cloud and Yandex 360 organizations with features for queue management, user information retrieval, issue operations, field management, and advanced query language capabilities.
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, authenticated access to Yandex Tracker issues, queues, comments, worklogs, and search functionality with optional Redis caching for improved performance.
Documentation in Russian is available here / Документация на русском языке доступна здесь.
Features
- Complete Queue Management: List and access all available Yandex Tracker queues with pagination support and tag retrieval
- User Management: Retrieve user account information, including login details, email addresses, license status, and organizational data
- Issue Operations: Retrieve detailed issue information, comments, related links, worklogs, and attachments
- Field Management: Access global fields, queue-specific local fields, statuses, and issue types
- Advanced Query Language: Full Yandex Tracker Query Language support with complex filtering, sorting, and date functions
- Performance Caching: Optional Redis caching layer for improved response times
- Security Controls: Configurable queue access restrictions and secure token handling
- Multiple Transport Options: Support for stdio, SSE (deprecated), and HTTP transports for flexible integration
- OAuth 2.0 Authentication: Dynamic token-based authentication with automatic refresh support as an alternative to static API tokens
- Organization Support: Compatible with both standard and cloud organization IDs
Organization ID Configuration
Choose one of the following based on your Yandex organization type:
- Yandex Cloud Organization: Use
TRACKER_CLOUD_ORG_ID
env var later for Yandex Cloud-managed organizations - Yandex 360 Organization: Use
TRACKER_ORG_ID
env var later for Yandex 360 organizations
You can find your organization ID in the Yandex Tracker URL or organization settings.
MCP Client Configuration
Installing extension in Claude Desktop
Yandex Tracker MCP Server can be one-click installed in Claude Desktop as and extension.
Prerequisites
There is only one requirement - python 3.12 must be installed on your system.
For macOS users, you can install it using the following command:
Installation
- Download the
*.dxt
file from GitHub Releases for your OS and platform. - Double-click the downloaded file to install it in Claude Desktop.
- Provide your Yandex Tracker OAuth token when prompted.
- Make sure extension is enabled - now you may use this MCP Server.
Manual installation
Prerequisites
- 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:
TRACKER_TOKEN
- Your Yandex Tracker OAuth token (required)TRACKER_CLOUD_ORG_ID
orTRACKER_ORG_ID
- Your Yandex Cloud (or Yandex 360) organization ID
Configuration file path:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
Using uvx:
Using Docker:
Using uvx:
Using Docker:
Configuration file path:
- Project-specific:
.cursor/mcp.json
in your project directory - Global:
~/.cursor/mcp.json
Using uvx:
Using Docker:
Configuration file path:
~/.codeium/windsurf/mcp_config.json
Access via: Windsurf Settings → Cascade tab → Model Context Protocol (MCP) Servers → "View raw config"
Using uvx:
Using Docker:
Configuration file path:
~/.config/zed/settings.json
Access via: Cmd+,
(macOS) or Ctrl+,
(Linux/Windows) or command palette: "zed: open settings"
Note: Requires Zed Preview version for MCP support.
Using uvx:
Using Docker:
Configuration file path:
- Workspace:
.vscode/mcp.json
in your project directory - Global: VS Code
settings.json
Option 1: Workspace Configuration (Recommended for security)
Create .vscode/mcp.json
:
Using uvx:
Using Docker:
Option 2: Global Configuration
Add to VS Code settings.json
:
Using uvx:
Using Docker:
For other MCP-compatible clients, use the standard MCP server configuration format:
Using uvx:
Using Docker:
Important Notes:
- Replace placeholder values with your actual credentials
- Restart your AI client after configuration changes
- Ensure
uvx
is installed and available in your system PATH - For production use, consider using environment variables instead of hardcoding tokens
Available MCP Tools
The server exposes the following tools through the MCP protocol:
Queue Management
queues_get_all
: List all available Yandex Tracker queues- Returns paginated queue information
- Respects
TRACKER_LIMIT_QUEUES
restrictions
queue_get_local_fields
: Get local fields for a specific queue- Parameters:
queue_id
(string, queue key like "SOMEPROJECT") - Returns queue-specific custom fields with id, name, and key
- Respects
TRACKER_LIMIT_QUEUES
restrictions
- Parameters:
queue_get_tags
: Get all tags for a specific queue- Parameters:
queue_id
(string, queue key like "SOMEPROJECT") - Returns list of available tags in the specified queue
- Respects
TRACKER_LIMIT_QUEUES
restrictions
- Parameters:
queue_get_versions
: Get all versions for a specific queue- Parameters:
queue_id
(string, queue key like "SOMEPROJECT") - Returns list of available versions in the specified queue with details like name, description, dates, and status
- Respects
TRACKER_LIMIT_QUEUES
restrictions
- Parameters:
User Management
users_get_all
: Get information about user accounts registered in the organization- Parameters:
per_page
(optional): Number of users per page (default: 50)page
(optional): Page number to return (default: 1)
- Returns paginated list of users with login, email, license status, and organizational details
- Includes user metadata such as external status, dismissal status, and notification preferences
- Parameters:
user_get
: Get information about a specific user by login or UID- Parameters:
user_id
(string, user login like "john.doe" or UID like "12345") - Returns detailed user information including login, email, license status, and organizational details
- Supports both user login names and numeric user IDs for flexible identification
- Parameters:
user_get_current
: Get information about the current authenticated user- No parameters required
- Returns detailed information about the user associated with the current authentication token
- Includes login, email, display name, and organizational details for the authenticated user
Field Management
get_global_fields
: Get all global fields available in Yandex Tracker- Returns complete list of global fields that can be used in issues
- Includes field schema, type information, and configuration
Status and Type Management
get_statuses
: Get all available issue statuses- Returns complete list of issue statuses that can be assigned
- Includes status IDs, names, and type information
get_issue_types
: Get all available issue types- Returns complete list of issue types for creating/updating issues
- Includes type IDs, names, and configuration details
get_priorities
: Get all available issue priorities- Returns complete list of priorities that can be assigned to issues
- Includes priority keys, names, and order information
Issue Operations
issue_get
: Retrieve detailed issue information by ID- Parameters:
issue_id
(string, format: "QUEUE-123")include_description
(boolean, optional, default: true): Whether to include issue description in the result. Can be large, so use only when needed.
- Returns complete issue data including status, assignee, description, etc.
- Parameters:
issue_get_url
: Generate web URL for an issue- Parameters:
issue_id
(string) - Returns:
https://tracker.yandex.ru/{issue_id}
- Parameters:
issue_get_comments
: Fetch all comments for an issue- Parameters:
issue_id
(string) - Returns chronological list of comments with metadata
- Parameters:
issue_get_links
: Get related issue links- Parameters:
issue_id
(string) - Returns links to related, blocked, or duplicate issues
- Parameters:
issue_get_worklogs
: Retrieve worklog entries- Parameters:
issue_ids
(array of strings) - Returns time tracking data for specified issues
- Parameters:
issue_get_attachments
: Get attachments for an issue- Parameters:
issue_id
(string, format: "QUEUE-123") - Returns list of attachments with metadata for the specified issue
- Parameters:
issue_get_checklist
: Get checklist items of an issue- Parameters:
issue_id
(string, format: "QUEUE-123") - Returns list of checklist items including text, status, assignee, and deadline information
- Parameters:
Search and Discovery
issues_find
: Search issues using Yandex Tracker Query Language- Parameters:
query
(required): Query string using Yandex Tracker Query Language syntaxinclude_description
(boolean, optional, default: false): Whether to include issue description in the issues result. Can be large, so use only when needed.page
(optional): Page number for pagination (default: 1)
- Returns up to 500 issues per page
- Parameters:
issues_count
: Count issues matching a query using Yandex Tracker Query Language- Parameters:
query
(required): Query string using Yandex Tracker Query Language syntax
- Returns the total count of issues matching the specified criteria
- Supports all query language features: field filtering, date functions, logical operators, and complex expressions
- Useful for analytics, reporting, and understanding issue distribution without retrieving full issue data
- Parameters:
http Transport
The MCP server can also be run in streamable-http mode for web-based integrations or when stdio transport is not suitable.
streamable-http Mode Environment Variables
Starting the streamable-http Server
You may skip configuring TRACKER_CLOUD_ORG_ID
or TRACKER_ORG_ID
if you are using the following format when connecting to MCP Server (example for Claude Code):
or
You may also skip configuring global TRACKER_TOKEN
environment variable if you choose to use OAuth 2.0 authentication (see below).
OAuth 2.0 Authentication
The Yandex Tracker MCP Server supports OAuth 2.0 authentication as a secure alternative to static API tokens. When configured, the server acts as an OAuth provider, facilitating authentication between your MCP client and Yandex OAuth services.
How OAuth Works
The MCP server implements a standard OAuth 2.0 authorization code flow:
- Client Registration: Your MCP client registers with the server to obtain client credentials
- Authorization: Users are redirected to Yandex OAuth to authenticate
- Token Exchange: The server exchanges authorization codes for access tokens
- API Access: Clients use bearer tokens for all API requests
- Token Refresh: Expired tokens can be refreshed without re-authentication
OAuth Configuration
To enable OAuth authentication, set the following environment variables:
Setting Up Yandex OAuth Application
- Go to Yandex OAuth and create a new application
- Set the callback URL to:
{MCP_SERVER_PUBLIC_URL}/oauth/yandex/callback
- Request the following permissions:
tracker:read
- Read permissions for Trackertracker:write
- Write permissions for Tracker
- Save your Client ID and Client Secret
OAuth vs Static Token Authentication
Feature | OAuth | Static Token |
---|---|---|
Security | Dynamic tokens with expiration | Long-lived static tokens |
User Experience | Interactive login flow | One-time configuration |
Token Management | Automatic refresh | Manual rotation |
Access Control | Per-user authentication | Shared token |
Setup Complexity | Requires OAuth app setup | Simple token configuration |
OAuth Mode Limitations
- Currently, the OAuth mode requires the MCP server to be publicly accessible for callback URLs
- OAuth mode is best suited for interactive clients that support web-based authentication flows
Using OAuth with MCP Clients
When OAuth is enabled, MCP clients will need to:
- Support OAuth 2.0 authorization code flow
- Handle token refresh when access tokens expire
- Store refresh tokens securely for persistent authentication
Note: Not all MCP clients currently support OAuth authentication. Check your client's documentation for OAuth compatibility.
Example configuration for Claude Code:
OAuth Data Storage
The MCP server supports two different storage backends for OAuth data (client registrations, access tokens, refresh tokens, and authorization states):
InMemory Store (Default)
The in-memory store keeps all OAuth data in server memory. This is the default option and requires no additional configuration.
Characteristics:
- Persistence: Data is lost when the server restarts
- Performance: Very fast access since data is stored in memory
- Scalability: Limited to single server instance
- Setup: No additional dependencies required
- Best for: Development, testing, or single-instance deployments where losing OAuth sessions on restart is acceptable
Configuration:
Redis Store
The Redis store provides persistent storage for OAuth data using a Redis database. This ensures OAuth sessions survive server restarts and enables multi-instance deployments.
Characteristics:
- Persistence: Data persists across server restarts
- Performance: Fast access with network overhead
- Scalability: Supports multiple server instances sharing the same Redis database
- Setup: Requires Redis server installation and configuration
- Best for: Production deployments, high availability setups, or when OAuth sessions must persist
Configuration:
Storage Behavior:
- Client Information: Stored persistently
- OAuth States: Stored with TTL (time-to-live) for security
- Authorization Codes: Stored with TTL and automatically cleaned up after use
- Access Tokens: Stored with automatic expiration based on token lifetime
- Refresh Tokens: Stored persistently until revoked
- Key Namespacing: Uses
oauth:*
prefixes to avoid conflicts with other Redis data
Important Notes:
- Both stores use the same Redis connection settings as the tools caching system
- When using Redis store, ensure your Redis instance is properly secured and accessible
- The
OAUTH_STORE
setting only affects OAuth data storage; tools caching usesTOOLS_CACHE_ENABLED
- Redis store uses JSON serialization for better cross-language compatibility and debugging
Configuration
Environment Variables
Docker Deployment
Using Pre-built Image (Recommended)
Building the Image Locally
Docker Compose
Using pre-built image:
Building locally:
Development Setup
License
This project is licensed under the terms specified in the LICENSE file.
Support
For issues and questions:
- Review Yandex Tracker API documentation
- Submit issues at https://github.com/aikts/yandex-tracker-mcp/issues
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Tools
This MCP enables access to Yandex Tracker issue management. Currently it supports all read operations to retrieve queues, issues and users from Yandex Tracker.
- Features
- MCP Client Configuration
- Available MCP Tools
- http Transport
- Configuration
- Docker Deployment
- License
- Support
Related Resources
Related MCP Servers
- AsecurityFlicenseAqualityAn MCP server that allows users to interact with YNAB data, enabling access to account balances, transactions, and the creation of new transactions through the Model Context Protocol.Last updated -101Python
- AsecurityAlicenseAqualityThe MCP server provides an interface to the Datadog API, enabling seamless management of incidents, monitoring, logs, dashboards, metrics, traces, and hosts. Its extensible design allows easy integration of additional Datadog APIs for future expansions.Last updated -1474877TypeScriptApache 2.0
- AsecurityAlicenseAqualityAn MCP server that provides tools for interacting with Linear issue tracking system, currently supporting issue search with plans to expand to issue creation, updates, comments, and project management.Last updated -1731TypeScriptMIT License
- -securityFlicense-qualityAn MCP server that connects to Sentry.io or self-hosted Sentry instances to retrieve and analyze error reports, stack traces, and debugging information.Last updated -2Python