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

n8n-nodes-getstream

v1.0.2

Published

N8N community node for GetStream Chat server-side operations

Downloads

11

Readme

Banner image

N8N GetStream Chat Node

An N8N community node for integrating with GetStream Chat server-side SDK.

Features

This node provides comprehensive server-side operations for GetStream Chat:

User Operations

  • Generate Token: Create authentication tokens for users
  • Upsert: Create or update a single user
  • Upsert Multiple: Bulk create or update multiple users
  • Query Users: Search users with filters and pagination
  • Deactivate: Deactivate a user account

Channel Operations

  • Create: Create new channels with optional members
  • Update: Update channel information and settings
  • Add Members: Add users to existing channels
  • Remove Members: Remove users from channels
  • Add Moderators: Grant moderator permissions to users
  • Demote Moderators: Remove moderator permissions
  • Query Channels: Search channels with filters and pagination

Message Operations

  • Send: Send messages to channels on behalf of users
  • Update: Modify existing messages
  • Delete: Remove messages from channels
  • Search: Search for messages within channels

Moderation Operations

  • Ban User: Ban users with optional reason and timeout
  • Unban User: Remove user bans

Installation

  1. Install the package in your N8N instance:
npm install n8n-nodes-getstream
  1. Restart your N8N instance to load the new node.

Configuration

Credentials Setup

  1. In N8N, create new credentials of type "Stream Chat API"
  2. Add your GetStream Chat credentials:
    • API Key: Your GetStream Chat API key
    • API Secret: Your GetStream Chat API secret (server-side only)

⚠️ Security Note: The API secret should only be used server-side and never exposed to client applications.

Usage Examples

Generate User Token

  • Resource: User
  • Operation: Generate Token
  • User ID: user123

Send Message

  • Resource: Message
  • Operation: Send
  • Channel CID: messaging:general (format: type:id)
  • Message Text: Hello, world!
  • User ID (Sender): user123

Create Channel

  • Resource: Channel
  • Operation: Create
  • Channel Type: messaging
  • Channel ID: general
  • Members: user1,user2,user3 (comma-separated)

Query Users

  • Resource: User
  • Operation: Query Users
  • Query Filter: {"name": {"$autocomplete": "john"}}
  • Limit: 50

API Documentation

For detailed information about GetStream Chat API and available operations, visit:

Development

To build the node locally:

# Install dependencies
pnpm install

# Build the project
pnpm run build

# Run in development mode
pnpm run dev

License

This project is licensed under the MIT License.

Support

For issues and questions:

  1. Check the GetStream Chat documentation
  2. Open an issue on this repository
  3. Contact GetStream support for API-related questions

Contributing

Contributions are welcome! Please feel free to submit pull requests or open issues for bug reports and feature requests.