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

n8n-nodes-openproject-complete

v1.1.1

Published

Complete n8n community node for OpenProject API integration with full coverage of all 15 resources including projects, work packages, users, groups, documents, attachments, meetings, activities, file links, categories, budgets, custom fields, time entries

Readme

n8n-nodes-openproject-complete

This is a comprehensive n8n community node that provides complete integration with the OpenProject API, covering all 14 major resources for full project management and collaboration capabilities.

🚀 Complete API Coverage

Unlike other OpenProject nodes, this implementation provides complete coverage of the OpenProject API v3 specification with 14 major resources:

Core Project Management:

  • Projects, Work Packages, Users, Time Entries

Collaboration & Content:

  • Groups, Documents, Attachments, Meetings

Advanced Features:

  • Activities, File Links, Categories, Budgets, Custom Fields, Work Schedules

Special Operations:

  • Group member management, File upload/download, Emoji reactions, Work schedule management

Installation

Follow the installation guide in the n8n community nodes documentation.

npm

npm install n8n-nodes-openproject-complete

Manual installation

  1. Clone or download this repository
  2. Run npm run build to compile the TypeScript code
  3. Run npm link in the project directory
  4. In your n8n installation directory, run npm link n8n-nodes-openproject-complete
  5. Restart n8n

Credentials

This node requires OpenProject API credentials. You can create these in your OpenProject user settings:

  1. Go to your OpenProject instance
  2. Navigate to your user profile → API
  3. Generate an API key
  4. Use the API key along with your OpenProject instance URL in the credential configuration

Supported Authentication Methods

  • API Key: Use your OpenProject API key (recommended)
  • Session: Use username and password for session-based authentication

Operations

Projects

  • List: Get all projects with optional filtering
  • Get: Retrieve a specific project by ID
  • Create: Create a new project
  • Update: Update an existing project
  • Delete: Delete a project

Work Packages

  • List: Get all work packages with optional filtering
  • Get: Retrieve a specific work package by ID
  • Create: Create a new work package
  • Update: Update an existing work package
  • Delete: Delete a work package

Users

  • List: Get all users with optional filtering
  • Get: Retrieve a specific user by ID
  • Create: Create a new user
  • Update: Update an existing user
  • Delete: Delete a user

Time Entries

  • List: Get all time entries with optional filtering
  • Get: Retrieve a specific time entry by ID
  • Create: Create a new time entry
  • Update: Update an existing time entry
  • Delete: Delete a time entry

Example Usage

Creating a Work Package

  1. Set domain to "Work Packages"
  2. Set resource to "Work Packages"
  3. Set operation to "Create"
  4. Fill in the required fields:
    • Subject: "New feature implementation"
    • Project ID: "1"
  5. Optionally add additional fields like description, assignee, due date, etc.

Listing Projects

  1. Set domain to "Projects"
  2. Set resource to "Projects"
  3. Set operation to "List"
  4. Optionally set filters in additional fields

Resources

Version history

1.0.0

  • Initial release
  • Support for Projects, Work Packages, Users, and Time Entries
  • API Key and Session authentication
  • Full CRUD operations for all supported resources

License

MIT