Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge YouTrack mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
Summary
JetBrains YouTrack: issues with YouTrack's query language, their comments and work items, projects, agile boards, sprints and users. REST API, permanent-token auth against YouTrack Cloud or a self-hosted server.
Frag einfach
Beispiel-Prompts für YouTrack
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → YouTrack klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
YouTrack + Cursor
JetBrains YouTrack: issues with YouTrack's query language, their comments and work items, projects, agile boards, sprints and users. REST API, permanent-token auth against YouTrack Cloud or a self-hosted server.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
YOUTRACK_URL, YOUTRACK_TOKEN
Schritt 1 — Zugangsdaten holen
Getting a token
- In YouTrack open your profile → Account Security → Authentication → New token, give it the
YouTrackscope, and copy it. Permanent tokens begin withperm:. - Set
YOUTRACK_URLto your instance root. On YouTrack Cloud that ishttps://example.youtrack.cloud; on a self-hosted server it may include a context path such ashttps://yt.example.com/youtrack. No trailing slash. The adapter appends/api. - Set
YOUTRACK_TOKEN. It is sent asAuthorization: Bearer perm:….
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Schritt 3 — Connector in Cursor hinzufügen
Cursor liest MCP-Server aus ~/.cursor/mcp.json. Füge diesen Eintrag hinzu:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und Cursor neu starten.
- Cursor → Einstellungen → MCP öffnen und prüfen, ob
YouTrackals "Connected" gelistet ist. - Chatten — alle
YouTrack-Tools sind aufrufbar.
Verfügbare Tools
| Tool | What it does |
|---|---|
youtrack_get_me | Read the user the token belongs to, with their login, full name and e-mail |
youtrack_search_issues | Search issues with YouTrack's query language — the same grammar as the web UI's search box |
youtrack_get_issue | Read one issue in full: summary, description, reporter, dates, and its custom fields — where state, priority and assignee actually live |
youtrack_list_issue_comments | Read the comments on one issue in order, with their author, text and creation time |
youtrack_list_issue_work_items | Read the time logged against one issue: each entry's author, date, duration and work type — the effort behind a ticket |
youtrack_list_projects | List projects with their short name, full name, description and leader — the short name is what a query's project: clause needs |
youtrack_list_agile_boards | List the agile boards with their name, the projects they cover and their current sprint, for a board-level view of the work |
youtrack_list_sprint_issues | List the issues on one sprint of one agile board, with their state and assignee — the sprint contents an agent is usually asked about |
youtrack_list_users | List users with their login, full name and e-mail, to resolve who an issue is assigned to |
youtrack_add_comment | Post a comment on an issue |
FAQ
Unterstützt Cursor benutzerdefinierte MCP-Server im Free-Tier? Ja — MCP ist auf Hobby, Pro und Business verfügbar.
Nächste Schritte
War dieser Guide hilfreich?