Back to MCP Servers
🔌

aikts/yandex-tracker-mcp

Apache-2.0API key required

🐍 ☁️ 🏠 - MCP Server for Yandex Tracker. Provides tools for searching and retrieving information about issues, queues, users.

PythonSearch

Install

uvx yandex-tracker-mcp

Required environment variables

TRACKER_TOKENSet in your MCP config
TRACKER_IAM_TOKENSet in your MCP config
TRACKER_SA_KEYSet in your MCP config
TRACKER_SA_PRIVATE_KEYSet in your MCP config
OAUTH_CLIENT_SECRETSet in your MCP config
OAUTH_ENCRYPTION_KEYSet in your MCP config
OAUTH_TOKENSet in your MCP config

claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "aikts-yandex-tracker-mcp": {
      "command": "uvx",
      "args": [
        "yandex-tracker-mcp"
      ],
      "env": {
        "TRACKER_TOKEN": "<YOUR_TRACKER_TOKEN>",
        "TRACKER_IAM_TOKEN": "<YOUR_TRACKER_IAM_TOKEN>",
        "TRACKER_SA_KEY": "<YOUR_TRACKER_SA_KEY>",
        "TRACKER_SA_PRIVATE_KEY": "<YOUR_TRACKER_SA_PRIVATE_KEY>",
        "OAUTH_CLIENT_SECRET": "<YOUR_OAUTH_CLIENT_SECRET>",
        "OAUTH_ENCRYPTION_KEY": "<YOUR_OAUTH_ENCRYPTION_KEY>",
        "OAUTH_TOKEN": "<YOUR_OAUTH_TOKEN>"
      }
    }
  }
}

Add this to your Claude Desktop config file. Find it at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS.

What this does

aikts/yandex-tracker-mcp exposes a set of tools to Claude over the Model Context Protocol. After you add it to claude_desktop_config.json (snippet above) and restart Claude Desktop, those tools become callable inside any conversation. That makes it useful when you want Claude to reach into search engines and knowledge bases without copy-pasting context every turn.

Requirements

This server needs the following environment variables to be set before it can run:

TRACKER_TOKEN
TRACKER_IAM_TOKEN
TRACKER_SA_KEY
TRACKER_SA_PRIVATE_KEY
OAUTH_CLIENT_SECRET
OAUTH_ENCRYPTION_KEY
OAUTH_TOKEN

Set these via the env object in your MCP config (see claude_desktop_config.json snippet above).

Common use cases

  • Search the open web, internal docs, or a vector store from inside a Claude session
  • Bring fresh information past Claude's training cutoff into context
  • Run multi-source research without copy-pasting URLs and snippets