Skip to main content

YouTrack

JetBrains' issue tracker. Bee Flow can search, read, create issues, and add comments.

Setup

  1. Generate a permanent token in YouTrack: Profile → Account Security → Tokens → New token. Scope: YouTrack.
  2. Set environment variables:
    YOUTRACK_BASE_URL=https://your-org.youtrack.cloud
    YOUTRACK_API_TOKEN=perm:...
  3. Restart server.

Tools

ToolPurpose
youtrack_list_projectsList projects visible to the token.
youtrack_search_issuesIssue query (uses YouTrack's query language).
youtrack_get_issueRead one issue (description, comments, history).
youtrack_create_issueCreate an issue.
youtrack_update_issueUpdate fields.
youtrack_add_commentAppend a comment.
youtrack_change_assigneeReassign.
youtrack_link_issuesAdd a relation between two issues.
youtrack_log_workRecord time spent.
youtrack_manage_tagsAdd / remove tags.

(Tools mirror the JetBrains MCP server roughly 1:1.)

Query syntax

YouTrack's query language is unchanged from the UI:

project: BEE state: Open priority: Critical assignee: me

Bee Flow forwards the query string as-is.

Use cases

  • "Find all Critical issues open in the BEE project, assigned to me."
  • "Add a comment to issue BEE-123 summarising this conversation."
  • (Automation) When a Talk message starts with /bug, open a YouTrack issue.

Permissions

The token's permissions decide what each tool can do. A read-only token will silently fail on create / update calls — pick the right token scope when generating.

Common errors

ErrorCauseFix
401 UnauthorizedToken expired or revokedRe-issue.
404 Project not foundID typoUse the project shortname (e.g. BEE), not numeric ID.
403 Forbidden on createToken lacks Create Issue permissionRe-issue with broader scope.