YouTrack MCP
Allows interaction with JetBrains YouTrack, providing tools for searching, creating, and updating issues, managing comments, attachments, projects, users, and articles through the YouTrack REST API.
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 MCPupdate issue DEMO-123 to In Progress"
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
Open-source Model Context Protocol server for JetBrains YouTrack. You run it locally (Docker, npx, or Python). It talks to YouTrack Cloud or Server over the REST API so Cursor, Claude Desktop, and other MCP clients can search, create, and update issues.
This server shipped in April 2025, about six months before JetBrains added a Remote MCP to YouTrack 2025.3 (October 2025). It is not a fork of the official server.
Why this still exists
JetBrains’ official MCP is built into YouTrack 2025.3+ (Cloud and Server) at https://<your-instance>/mcp. New MCP features from JetBrains (OAuth, time tracking, tags, drafts, custom YouTrack apps) live there. Use that if you are on 2025.3 or newer and want the vendor path.
This project is a process you run. It calls the YouTrack REST API — the same API that existed before /mcp. That is why it still works on self-hosted Server that has not upgraded to 2025.3. There is no published minimum YouTrack version; if your instance can issue a permanent token and serve /api/issues, this server can talk to it. Article tools need a YouTrack that has the knowledge base.
This MCP | Official (2025.3+) | |
History | April 2025, before official existed | Shipped in YouTrack 2025.3 (Oct 2025) |
Where it runs | Your machine (stdio / Docker) | Inside YouTrack ( |
YouTrack versions | REST API (including Server before 2025.3) | 2025.3 and newer |
Cursor / Claude Desktop | Native stdio | Remote HTTP, or |
Field updates | Simple strings: | Fetch field schema, then |
Stick with this for | Older Server, local stdio, attachments, project admin, tool allow/deny lists | New JetBrains MCP features, OAuth, n8n/Zapier |
Related MCP server: Jira Cloud MCP Server
Quick start
You need a YouTrack URL and a permanent API token.
Cursor / Claude Desktop (Docker)
{
"mcpServers": {
"youtrack": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "YOUTRACK_URL=https://your-instance.youtrack.cloud",
"-e", "YOUTRACK_API_TOKEN=perm-xxx.your-token",
"tonyzorin/youtrack-mcp:latest"
]
}
}
}Same image on GHCR: ghcr.io/tonyzorin/youtrack-mcp:latest.
-i is required for stdio (without it the container exits immediately). Docker does not see Cursor/Claude env — pass YouTrack vars with -e in args. To limit tools, add another -e line, for example ENABLED_TOOLS=get_issue,search_issues,create_issue,add_comment.
npx (no Docker)
{
"mcpServers": {
"youtrack": {
"command": "npx",
"args": ["-y", "youtrack-mcp-tonyzorin"],
"env": {
"YOUTRACK_URL": "https://your-instance.youtrack.cloud",
"YOUTRACK_API_TOKEN": "perm-xxx.your-token"
}
}
}
}Requires Node.js 18+ and Python 3.14+. Also published as @tonyzorin/youtrack-mcp on GitHub Packages.
Docker from a terminal
docker run --rm -i \
-e YOUTRACK_URL="https://your-instance.youtrack.cloud" \
-e YOUTRACK_API_TOKEN="perm-xxx.your-token" \
tonyzorin/youtrack-mcp:latestTag latest is the current stable release (2.0.0). Pin tonyzorin/youtrack-mcp:2.0.0 if you want a frozen image. WIP and PR tags exist for testing; do not use them in production.
Docker Compose (HTTP)
Compose does not attach a client to stdin, so stdio exits after startup. Use streamable HTTP and publish the port:
services:
youtrack-mcp:
image: tonyzorin/youtrack-mcp:latest
ports:
- "8000:8000"
environment:
YOUTRACK_URL: https://your-instance.youtrack.cloud
YOUTRACK_API_TOKEN: perm-xxx.your-token
TRANSPORT: streamable-http
ENABLED_TOOLS: get_issue,search_issues,get_projectsPoint Cursor / Claude Code at http://localhost:8000/mcp.
Remote HTTP from a terminal:
docker run --rm -p 8000:8000 \
-e YOUTRACK_URL="https://your-instance.youtrack.cloud" \
-e YOUTRACK_API_TOKEN="perm-xxx.your-token" \
tonyzorin/youtrack-mcp:latest \
--transport streamable-http --host 0.0.0.0 --port 8000What you can do
Pass simple strings for state, priority, assignee, type, and estimation. Nested { "name": "In Progress" } objects fail.
search_issues("project: DEMO #Unresolved")
get_issue("DEMO-123")
create_issue(project="DEMO", summary="Login fails on special characters", custom_fields={"Assignee": "admin", "Type": "Bug"})
update_issue_state("DEMO-123", "In Progress")
update_issue_priority("DEMO-123", "Critical")
update_issue_assignee("DEMO-123", "admin")
update_issue_type("DEMO-123", "Bug")
update_issue_estimation("DEMO-123", "4h")
add_comment("DEMO-123", "Reproduced on staging")
add_dependency("DEMO-123", "DEMO-124")Issues: search, get, create, update, comments, links (relates / depends / duplicates).
Custom fields: dedicated helpers above, plus update_custom_fields, batch updates, schema and allowed-value lookup.
Attachments: list via get_issue_raw, download as base64 (get_attachment_content), delete.
Projects: list/get, create/update, custom-field schemas, subsystems, versions, builds.
Users: current user, lookup, permissions.
Articles: get, search, create, update, comments.
Diagnostics: diagnose_workflow_restrictions, get_help.
Configuration
Variable | Required | Description |
| yes | YouTrack base URL (Cloud or Server) |
| yes | Permanent token |
| no | SSL verification, default |
| no | Comma-separated tools to hide (denylist) |
| no | Comma-separated tools to keep; hides all others (allowlist) |
Allowlist wins if both are set. Names are case-insensitive; hyphens and underscores are equivalent.
# Hide write tools
export DISABLED_TOOLS="create_issue,update_issue,delete_attachment"
# Read-only subset
export ENABLED_TOOLS="get_issue,search_issues,get_projects"Self-signed Server: YOUTRACK_VERIFY_SSL=false.
Development
Support
Telegram: t.me/tonyzorin
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Linear project management and issue tracking
MCP server for generating rough-draft project plans from natural-language prompts.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
A MCP server built for developers enabling Git based project management with project and personal…
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server for Yandex Tracker API, enabling AI assistants to search, read, create, and edit issues, as well as manage comments, attachments, and links in Yandex Tracker.481MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for interacting with Jira Cloud instances. Enables issue management, JQL queries, project and sprint management, and batch operations via natural language interfaces.1484MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) server for YouTrack integration, providing a standardized interface for LLMs to interact with YouTrack's issue tracking, agile management, and knowledge base features.1230MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for comprehensive YouTrack integration, enabling issue management, work tracking, search, and knowledge base operations.1456MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tonyzorin/youtrack-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server