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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jetbrains/n8n-nodes-youtrack

v0.1.8

Published

Custom n8n node for YouTrack

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
Operations
Credentials
Compatibility
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node provides two components: the YouTrack node for API operations and the YouTrack Trigger node for webhook-based automation.

YouTrack Node

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 Node

The YouTrack Trigger node allows you to start workflows automatically when events occur in YouTrack.

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

This node uses permanent token authentication to connect to YouTrack.

Prerequisites

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

Authentication Setup

  1. Generate a Permanent Token:

    • Log in to your YouTrack instance
    • Navigate to your Hub profile under Authentication > Tokens
    • Create a new permanent token
  2. Configure Credentials in n8n:

    • In n8n, go to Credentials > New Credential
    • Select YouTrack API
    • Enter your YouTrack URL (e.g., https://your-instance.myjetbrains.com/youtrack for cloud
      • Important: Enter the base URL without /api at the end
    • Enter your Permanent Token
    • Click Save

Compatibility

  • Minimum n8n version: Requires n8n version that supports community nodes with API version 1
  • YouTrack API: Compatible with YouTrack REST API (cloud and self-hosted instances)

Usage

Command Execute

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

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

Note: The vote+1 command 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, configure the Webhook Triggers app in your YouTrack instance. The YouTrack Trigger node will provide the webhook URL during setup.

Resources

License

MIT License