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-kipps-voice-agent

v0.1.2

Published

n8n node for Kipps.AI Voice Agent

Readme

n8n-nodes-kipps-voice-agent

Custom n8n community node for initiating outbound phone calls using Kipps.AI VoiceAgent.

This node allows you to start automated voice calls from n8n workflows by connecting to the Kipps.AI speech API.


Features

  • Start outbound phone calls using a Kipps.AI Voicebot
  • Simple configuration with minimal required fields
  • Works with n8n credentials system
  • Suitable for automation, testing, and call workflows

Installation

From n8n UI (Recommended)

  1. Open n8n
  2. Go to Settings → Community Nodes
  3. Click Install
  4. Search for:
n8n-nodes-kipps-voice-agent
  1. Install and restart n8n if required

Manual Installation

npm install n8n-nodes-kipps-voice-agent

Restart n8n after installation.


Credentials Setup

Create a new credential of type:

Kipps.AI API

Provide your Kipps.AI API key.

The node uses header authentication:

Authorization: Api-Key <your_api_key>

Node Configuration

The node requires the following fields:

Voicebot ID

The unique ID of the Kipps.AI voicebot that will place the call.

Example:

fc248e5fa-abcdeg12-shaj

Phone Number

Destination phone number in E.164 format.

Example:

+91123456789

Room Name

Unique identifier for the call session.

This must be unique for each call.

Example:

call-12345

What This Node Does

When executed, the node sends a request to:

POST /speech/phone-call/

With payload:

{
  "voicebot": "<voicebot_id>",
  "to_phone_number": "<phone_number>",
  "room_name": "<room_name>",
  "call_origin": "outbound",
  "call_end_status": "started"
}

Example Use Cases

  • Automated lead qualification calls
  • Reminder and notification calls
  • Testing voicebot behavior
  • Workflow-driven outbound calling

Requirements

  • Active Kipps.AI account
  • Valid API key
  • Configured Voicebot

Troubleshooting

400 Bad Request

Check:

  • Phone number format includes + and country code
  • Voicebot ID is valid
  • Room name is unique

403 / Authorization Error

Check:

  • API key is correct
  • Credential is selected in the node
  • Token has not expired

Development

Build the node:

npm run build

Publish a new version:

npm version patch
npm run release

License

MIT