MCP Catalogs
Home

yandex-tracker-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

yandex-tracker-mcp
by aikts
everything
by modelcontextprotocol
Stars★ 73★ 85,748
30d uses
Score4877
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

yandex-tracker-mcp · Summary

An MCP server providing full Yandex Tracker API integration with OAuth2 support and caching capabilities.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

yandex-tracker-mcp · Use cases

  • AI assistant managing Yandex Tracker issues through natural language commands
  • Development team automating issue tracking workflows via AI
  • Product managers querying ticket data and generating reports using AI

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

yandex-tracker-mcp · Install

Installation

  1. **Using uvx (Recommended)**
uvx yandex-tracker-mcp@latest
  1. **Using Docker**
docker run --rm -i ghcr.io/aikts/yandex-tracker-mcp:latest
  1. **Claude Desktop Configuration**
{
  "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"
      }
    }
  }
}

Required Environment Variables

  • TRACKER_TOKEN - Your Yandex Tracker OAuth token
  • TRACKER_IAM_TOKEN - IAM token (alternative)
  • TRACKER_CLOUD_ORG_ID or TRACKER_ORG_ID - Your organization ID

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.