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 | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this 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
- **Using uvx (Recommended)**
uvx yandex-tracker-mcp@latest- **Using Docker**
docker run --rm -i ghcr.io/aikts/yandex-tracker-mcp:latest- **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 tokenTRACKER_IAM_TOKEN- IAM token (alternative)TRACKER_CLOUD_ORG_IDorTRACKER_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