Provides extensive tools for YouTrack issue tracking and project management, including issue CRUD operations, advanced search, project management, user management, workflow automation, time tracking, and agile methodologies.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@YouTrack MCP Servershow me all open issues assigned to me in the 'Web App' project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
YouTrack MCP Server
A comprehensive Model Context Protocol (MCP) server for YouTrack integration, providing extensive tools for issue tracking, project management, workflow automation, and team collaboration.
Features
🎯 Issue Management
CRUD Operations: Create, read, update, and delete issues
Advanced Search: Search issues with complex filters and queries
Bulk Operations: Update multiple issues at once
Issue Linking: Manage relationships between issues
Comments & Attachments: Full support for issue discussions and file attachments
Work Items: Track time and work logs
📊 Project Management
Project Operations: List, create, and manage projects
Custom Fields: Define and manage custom field schemas
Versions & Milestones: Track releases and project milestones
Components: Organize issues by components/modules
👥 User & Team Management
User Operations: List users, groups, and permissions
Team Collaboration: Manage team assignments and roles
Notifications: Handle user notifications and subscriptions
🔄 Workflow & Automation
Workflow States: Manage issue states and transitions
Custom Workflows: Define and execute custom workflows
Automation Rules: Set up automated actions and triggers
📈 Analytics & Reporting
Reports: Generate various project and issue reports
Statistics: Get project statistics and metrics
Time Tracking: Comprehensive time tracking and reporting
🏃♂️ Agile Features
Agile Boards: Manage Kanban and Scrum boards
Sprints: Create and manage sprint cycles
Burndown Charts: Track progress with visual charts
Related MCP server: Linear MCP Server
Installation
Prerequisites
Node.js 18.0.0 or higher
YouTrack instance (Cloud or On-Premise)
YouTrack API token or credentials
🚀 Lightweight Installation Options (Avoid Heavy node_modules)
Option 1: npx (Zero Installation - Recommended)
# Run directly without installing anything locally
npx youtrack-mcp
# Test the installation
npx youtrack-mcp --help
# With environment variables
YOUTRACK_BASE_URL=https://your-instance.youtrack.cloud \
YOUTRACK_TOKEN=your-token \
npx youtrack-mcpOption 2: Global Installation (Install Once, Use Everywhere)
# Install globally from npm (only ~2MB)
npm install -g youtrack-mcp
# Test the installation
youtrack-mcp --help
# Run with environment variables
YOUTRACK_BASE_URL=https://your-instance.youtrack.cloud \
YOUTRACK_TOKEN=your-token \
youtrack-mcpOption 3: Using pnpm (70% less disk usage)
# Install pnpm globally (one time setup)
npm install -g pnpm
# Clone and install with pnpm
git clone https://github.com/youtrack-mcp/youtrack-mcp.git
cd youtrack-mcp
pnpm install
pnpm run buildOption 4: Docker Container (Zero local dependencies)
docker run -d --name youtrack-mcp \
-e YOUTRACK_BASE_URL=https://your-instance.youtrack.cloud \
-e YOUTRACK_TOKEN=your-token \
ghcr.io/youtrack-mcp/youtrack-mcp:latestTraditional Installation (Heavy node_modules)
git clone https://github.com/youtrack-mcp/youtrack-mcp.git
cd youtrack-mcp
npm install
npm run buildClaude Desktop Integration
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
Option 1: npx (Zero Installation - Recommended)
{
"mcpServers": {
"youtrack": {
"command": "npx",
"args": ["youtrack-mcp"],
"env": {
"YOUTRACK_BASE_URL": "https://your-instance.youtrack.cloud",
"YOUTRACK_TOKEN": "your-permanent-token"
}
}
}
}Option 2: Global Installation
{
"mcpServers": {
"youtrack": {
"command": "youtrack-mcp",
"env": {
"YOUTRACK_BASE_URL": "https://your-instance.youtrack.cloud",
"YOUTRACK_TOKEN": "your-permanent-token"
}
}
}
}Option 3: Local Development Build
{
"mcpServers": {
"youtrack": {
"command": "node",
"args": ["/path/to/youtrack-mcp/build/index.js"],
"env": {
"YOUTRACK_BASE_URL": "https://your-instance.youtrack.cloud",
"YOUTRACK_TOKEN": "your-permanent-token"
}
}
}
}Option 4: Docker Container
{
"mcpServers": {
"youtrack": {
"command": "docker",
"args": ["exec", "youtrack-mcp", "node", "build/index.js"],
"env": {}
}
}
}Configuration
Authentication Methods
Permanent Token (Recommended)
YOUTRACK_BASE_URL=https://your-instance.youtrack.cloud
YOUTRACK_TOKEN=your-permanent-tokenTo create a permanent token:
Go to YouTrack → Profile → Account Security → Tokens
Click "New Token"
Set appropriate permissions and scope
Copy the generated token
Username/Password (Not Recommended)
YOUTRACK_BASE_URL=https://your-instance.youtrack.cloud
YOUTRACK_USERNAME=your-username
YOUTRACK_PASSWORD=your-passwordAdvanced Configuration
# Performance
YOUTRACK_REQUEST_TIMEOUT=30000
YOUTRACK_MAX_RETRIES=3
YOUTRACK_DEFAULT_PAGE_SIZE=50
YOUTRACK_MAX_PAGE_SIZE=100
# Caching
YOUTRACK_ENABLE_CACHE=true
YOUTRACK_CACHE_TTL=300
# Debugging
YOUTRACK_DEBUG=trueAvailable Tools
Issue Management
Tool | Description |
| List issues with filtering and pagination |
| Get detailed issue information |
| Create a new issue |
| Update existing issue |
| Delete an issue |
| Advanced issue search with query syntax |
| Add comment to an issue |
| Get all comments for an issue |
| Update existing comment |
| Delete a comment |
| Add file attachment to issue |
| Get all attachments for an issue |
| Create links between issues |
| Get all links for an issue |
Project Management
Tool | Description |
| List all accessible projects |
| Get detailed project information |
| Create a new project |
| Update project settings |
| Delete a project |
| Get custom fields for project |
| Add custom field to project |
| List project versions/releases |
| Create new version/release |
User Management
Tool | Description |
| List all users |
| Get user details |
| Get current authenticated user |
| List user groups |
| Get group details |
| List available roles |
Workflow Management
Tool | Description |
| Get available workflow states |
| Get possible state transitions |
| Apply workflow command to issue |
| Get available commands for issue |
Time Tracking
Tool | Description |
| Add time tracking entry |
| Get work items for issue |
| Update work item |
| Delete work item |
| Generate time tracking report |
Reports & Analytics
Tool | Description |
| Get project statistics |
| Get issue-related statistics |
| Generate custom reports |
| Get burndown chart data |
Agile & Boards
Tool | Description |
| List all agile boards |
| Get agile board details |
| Create new agile board |
| Update agile board |
| List sprints for board |
| Create new sprint |
| Update sprint details |
Usage Examples
Creating an Issue
Create a new bug report with title "Login button not working" in project "WEB" with high prioritySearching Issues
Find all open issues assigned to john.doe in the mobile project created in the last 30 daysProject Management
List all projects and show their current status and team membersTime Tracking
Add 2 hours of development work to issue WEB-123 with description "Implemented login validation"Workflow Management
Move issue WEB-123 to "In Progress" state and assign it to jane.smithDevelopment
Testing Installation
# Run comprehensive tests
./examples.sh
# Test specific components
./examples.sh npx # Test npx installation
./examples.sh global # Test global installation
./examples.sh claude # Generate Claude configs
./examples.sh docker # Test Docker setupBuilding
npm run buildDevelopment Mode
npm run devWatch Mode
npm run watchTesting
npm test
npm run test:npx # Test npx functionality
npm run test:global # Test global installationLinting
npm run lint
npm run lint:fixDebugging with MCP Inspector
npm run inspectorAPI Documentation
This MCP server follows YouTrack's REST API structure. For detailed API reference, visit:
Contributing
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
Issues: GitHub Issues
Documentation: API Documentation
Community: Discussions
Acknowledgments
JetBrains YouTrack for the excellent issue tracking platform
Model Context Protocol for the standardized integration framework
Anthropic Claude for AI assistant integration
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.