npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@jetbrains/n8n-nodes-youtrack

v0.1.4

Published

Custom n8n node for YouTrack

Downloads

366

Readme

@jetbrains/n8n-nodes-youtrack

official JetBrains project

This is an n8n community node. It lets you use YouTrack in your n8n workflows.

YouTrack is a project management and issue tracking tool by JetBrains that helps teams manage projects, track issues, and collaborate effectively.

n8n is a fair-code licensed workflow automation platform.

Installation
Actions
Credentials
Compatibility
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Actions

Actions allow users to integrate the YouTrack REST API in their n8n workflows.

The YouTrack node supports the following resources and operations:

Command

  • Execute - Execute YouTrack commands on one or more issues (bulk operations supported). Supports all YouTrack commands: tags, assignees, comments, work items, votes, watchers, links, custom fields, and more.

Comment

  • Add - Add a comment to an issue
  • List - List all comments on an issue

Issue

  • Create - Create a new issue
  • Delete - Delete an issue
  • Get - Get an issue by ID
  • List - List issues
  • Update - Update an issue

Issue Draft

  • Create - Create a new issue draft
  • Delete - Delete an issue draft
  • Get - Get an issue draft by ID
  • List - List issue drafts
  • Update - Update an issue draft

Project

  • Get - Get a specific project
  • Get Fields Schema - Get the JSON schema for custom fields in the specified project
  • Get Issues - Get issues for a specific project
  • List - List all projects

Saved Query

  • Create - Create a new saved query
  • List - List all saved queries visible to the current user

Tag

  • Add to Issue - Add a tag to an issue
  • Get Issue Tags - Get all tags on a specific issue
  • List - List all available tags
  • Remove From Issue - Remove a tag from an issue

User

  • Get - Get a specific user by ID or login
  • Get Current - Get current authenticated user
  • Get General Profile - Get general profile settings for a specific user
  • Get Notifications Profile - Get notification settings for a specific user
  • Get Saved Queries - Get saved queries for a specific user
  • Get Tags - Get tags for a specific user
  • Get Time Tracking Profile - Get time tracking settings for a specific user
  • List - List users

User Group

  • Get - Get a specific user group by ID
  • Get Members - Get members of a user group
  • List - List user groups

Work Item

  • Add - Add a work item (time tracking) to an issue

YouTrack Trigger (Webhook)

The YouTrack Trigger node allows you to start workflows automatically when events occur in YouTrack (e.g., issue created, updated, deleted).

Supported Events

  • Issue Created
  • Issue Updated
  • Issue Deleted
  • Comment Added
  • Comment Updated
  • Comment Deleted
  • Work Item Added
  • Work Item Updated
  • Work Item Deleted
  • Issue Attachment Added
  • Issue Attachment Deleted

Credentials

To use the YouTrack node, you need to authenticate with your YouTrack instance using a permanent token.

Prerequisites

  1. Access to a YouTrack instance (cloud or server)
  2. A YouTrack account with appropriate permissions

Setting Up Authentication

  1. Generate a Permanent Token in YouTrack
  2. Configure Credentials in n8n:
    • In n8n, go to Credentials > Create Credential
    • Select YouTrack API
    • Enter your YouTrack URL (e.g., https://your-instance.myjetbrains.com/youtrack or http://localhost:8088 for self-hosted)
      • Note: Enter the base URL without /api at the end
    • Enter your Permanent Token
    • Click Save

The node uses Bearer token authentication and will automatically include the token in all API requests.

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with: n8n 1.0.0 and later
  • YouTrack API: Compatible with YouTrack REST API

Usage

Command Execute

The Command Execute operation allows you to apply YouTrack commands to issues using natural language syntax. Examples:

  • tag MyTag for me - Adds "MyTag" to issue and assigns it to you
  • tag To Deploy for jane.doe - Adds "To Deploy" tag and assigns to jane.doe
  • work 2h Fixed bug - Logs 2 hours of work with a comment

Note: vote+1 cannot be used on your own issues, and usernames must be valid YouTrack logins.

Custom Fields

To discover available custom fields for a project, use the Project > Get Fields Schema operation, which returns the JSON schema for all custom fields in the specified project.

Issue Queries

When listing or filtering issues, YouTrack uses its own query language. See the YouTrack Query Syntax documentation for details.

Webhooks

For webhook triggers, you need to configure webhook subscriptions in your YouTrack instance. The YouTrack Trigger node will provide you with the webhook URL to use during setup.

Resources