YouTrack
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.
7 天免费 · 无需信用卡 · EU 托管
问 YouTrack 任何事
通过 AnythingMCP 对 YouTrack 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 YouTrackClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 YouTrack。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 YouTrack
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
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:….
fields is mandatory, and this is the thing to understand about YouTrack's API. Without it, YouTrack returns only $type and id for every object — technically a success, practically useless. The syntax is a nested selector: id,idReadable,summary,customFields(name,value(name)). Every tool below sends a useful default; override it when you need something else.
The query language is the powerful part. project: PROJ #Unresolved assignee: me sort by: updated desc is a complete query. It also handles created: {This week}, State: {In Progress}, #Bug, has: -attachments. This is the same grammar as the search box in the web UI, so anything a user can type there works here.
Custom fields are a nested array, not top-level properties. State, priority and assignee all live in customFields as {name, value:{name}} pairs. An agent looking for a top-level state property will not find one.
$skip and $top page, and there is no total count — a short page means the end.
Self-hosted, which is the thing to plan for.
- On AnythingMCP Cloud the instance must be reachable from the public internet on a real hostname with a valid TLS certificate. A self-signed certificate will fail: the connector offers no trust-anything switch.
- On an internal host (
yt.intern,10.0.0.x), self-host AnythingMCP on the same network and add that host toSSRF_ALLOWED_HOSTS, or the outbound guard refuses the call before it is made.
Writes: youtrack_add_comment posts a real comment that notifies the issue's watchers.