Description
This MCP server provides comprehensive integration with Yandex Tracker, Russia's project management and issue tracking platform, enabling AI assistants to interact with tickets, queues, users, and project data through a robust protocol-based architecture. Built by KTS with FastMCP and featuring optional Redis caching, it supports multiple authentication methods including OAuth 2.0 with PKCE, static tokens, IAM tokens, and service account credentials, making it suitable for both individual developers and enterprise deployments. The implementation offers 18 specialized tools covering issue management (search, retrieval, comments, attachments, checklists), queue operations, user management, and metadata access, with advanced features like selective field inclusion to optimize context window usage and queue-level access restrictions for security.
Installation
npx -y yandex-tracker-mcp npm install yandex-tracker-mcp git clone https://github.com/aikts/yandex-tracker-mcp Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"yandex-tracker": {
"command": "npx",
"args": [
"-y",
"yandex-tracker-mcp"
]
}
}
}