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-chatwork

v2.1.1

Published

Provides an n8n community node for integrating Chatwork messaging and task APIs into automated workflows.

Downloads

812

Readme

n8n-nodes-chatwork

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

ChatWork is a business chat platform that provides messaging, task management, file sharing, and team collaboration features via a REST API.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

After installation, restart n8n to load the ChatWork node.

Operations

This node supports the following ChatWork API operations:

Me

  • Get account information

My

  • Get status (unread counts, tasks)
  • Get tasks assigned to the authenticated user

Contacts

  • Get contact list

Rooms

  • Get all rooms
  • Get room details
  • Create a room
  • Update room information
  • Leave or delete a room
  • Get room members
  • Change associated members
  • Get messages
  • Send a message
  • Get message details
  • Update a message
  • Delete a message
  • Get tasks
  • Create a task
  • Get task details
  • Get files
  • Get file details (with optional temporary download URL)

Webhook Trigger

This package provides a Chatwork Trigger node that allows n8n workflows to receive events from Chatwork via webhooks.

Supported Events

The trigger node listens to incoming Chatwork webhook events and routes them to different outputs:

| Event Type | Output | |-------------------|-----------------| | mention_to_me | Mention To Me | | message_created | Message Created | | message_updated | Message Updated |

Webhook Security

Chatwork signs webhook requests using an HMAC-SHA256 signature.

The Chatwork Trigger node supports optional signature verification using one or more webhook tokens:

  • Signature header: x-chatworkwebhooksignature
  • Hash algorithm: HMAC-SHA256
  • Secret key: Base64-decoded webhook token

Signature verification can be disabled for local development and testing.

Each output can be connected independently in your workflow.

Development Notes

  • The workflow must be active for webhooks to be registered
  • Webhooks will return 404 – unknown webhook if the workflow is inactive
  • Signature verification should be disabled when testing with manual curl requests

Known Limitations

  • Webhook events are currently processed as-is
  • Duplicate or replayed webhook events are not yet deduplicated
  • Replay protection and idempotency will be added in a future release

Credentials

This node requires a ChatWork API Token.

Prerequisites

  • A ChatWork account
  • An API token generated from your ChatWork account settings

Setup

  1. In n8n, go to Credentials
  2. Create new credentials of type ChatWork API
  3. Paste your ChatWork API token
  4. Save the credentials and select them in the ChatWork node

Authentication is handled via the X-ChatWorkToken request header.

Compatibility

  • Minimum n8n version: 1.x
  • Tested with: n8n 1.x (community nodes API v1)

This node uses the new routing-based request system introduced in n8n v1. Older n8n versions are not supported.

Usage

Most operations are straightforward and map directly to ChatWork API endpoints.

Notes:

  • Boolean options such as Create download URL control optional API query parameters.

If you are new to n8n, see the Try it out guide to get started.

Resources

Version history

2.0.0

  • Migrated to n8n routing-based request structure
  • Improved Room operations
  • Fixed message sending with multipart/form-data
  • General refactoring and cleanup