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 + ChatGPT
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 ChatGPT hinzufügen
ChatGPT unterstützt MCP-Server über die Connectors-Funktion (Plus-/Pro-/Team-/Enterprise-Pläne). Der kostenlose Tarif unterstützt keine eigenen Connectors.
- Öffne ChatGPT → Einstellungen → Connectors (oder klicke das 🔧-Icon im Composer → Manage connectors).
- Klicke "Add custom connector".
- Trage ein:
- Name:
YouTrack - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer Token → MCP-API-Key einfügen (aus AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Klicke Connect zum Autorisieren.
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
Funktioniert der kostenlose ChatGPT-Tarif mit eigenen MCP-Connectors? Nein — Plus, Pro, Team oder Enterprise erforderlich.
Nächste Schritte
War dieser Guide hilfreich?