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

@dropcowboy/n8n-nodes-dropcowboy

v1.0.2

Published

n8n workflow automation nodes for Drop Cowboy - Ringless voicemail and SMS automation platform

Downloads

331

Readme

Drop Cowboy n8n Nodes

Official n8n nodes for Drop Cowboy - Automate ringless voicemail and SMS campaigns.

Installation

Community Nodes (Coming Soon)
Install directly from n8n's node browser once published.

Manual Installation

npm install @dropcowboy/n8n-nodes-dropcowboy

Credentials

You'll need your Drop Cowboy API credentials:

  • Team ID: Found in your Drop Cowboy account under "My Account" → "API"
  • Secret: Your API secret (keep this secure!)

Visit the Drop Cowboy API Documentation for more details.

Available Nodes

Actions (Send campaigns)

  • Send RVM from Recording - Send ringless voicemails using pre-recorded audio files
  • Send RVM from AI Voice - Send ringless voicemails using text-to-speech with AI voices
  • Send SMS - Send text messages

All action nodes support Multiple Outputs (Easy Branching) for automatic routing based on delivery status - no code required!

Usage

Send RVM from Recording

  1. Add Drop Cowboy credentials to n8n
  2. Add "Send RVM from Recording" node to your workflow
  3. Configure:
    • Phone Number: Recipient's phone number (E.164 format, e.g., +15551234567)
    • Brand: Your registered brand from the Trust Center
    • Recording: Select pre-recorded audio file
    • Forwarding Number (optional): Phone number for replies
    • Output Mode: Choose "Multiple Outputs" for easy branching!

Send RVM from AI Voice

  1. Add Drop Cowboy credentials to n8n
  2. Add "Send RVM from AI Voice" node to your workflow
  3. Configure:
    • Phone Number: Recipient's phone number (E.164 format, e.g., +15551234567)
    • Brand: Your registered brand from the Trust Center
    • AI Voice: Select text-to-speech voice
    • Message Text: Enter the message to be spoken
    • Output Mode: Choose "Multiple Outputs" for easy branching!

Send SMS

  1. Add Drop Cowboy credentials to n8n
  2. Add "Send SMS" node to your workflow
  3. Configure:
    • Phone Number: Recipient's phone number (E.164 format, e.g., +15551234567)
    • Brand: Your registered brand from the Trust Center
    • Message: SMS message text
    • Output Mode: Choose "Multiple Outputs" for easy branching!

🔀 Easy Branching (No Code Required!)

For Non-Technical Users ⭐

NEW: Multiple Outputs Mode - Automatically route results without writing any expressions!

Send RVM from Recording / AI Voice (Multiple Outputs)
  ↓
  ├─ ✅ Success → Send follow-up SMS
  ├─ ❌ Failure → Log & analyze 
  └─ 🚫 DNC     → Permanent do-not-call (Internal DNC, Known Litigator)

How to use:

  1. Select "Output Mode" → "Multiple Outputs (Easy Branching)"
  2. Activate workflow
  3. Just drag lines from each output! No code needed!

💡 Note: Review reason codes in webhook data to understand why each delivery succeeded or failed. Consult legal counsel regarding your specific compliance obligations.

See EASY_BRANCHING.md for step-by-step visual guide


For Technical Users

Use IF/Switch nodes with expressions for advanced control:

Send RVM → IF {{ $json.status === "success" }}
           ├─ TRUE → Advanced logic
           └─ FALSE → Custom error handling

See WEBHOOK_WAIT.md for:

  • IF node patterns with expressions
  • Switch node routing by failure reason
  • Custom retry logic
  • Complex multi-stage campaigns

API Endpoints

This package integrates with the Drop Cowboy v1 API:

  • Base URL: https://api.dropcowboy.com/v1/
  • Authentication: Team ID + Secret

Development

Build

npm run build

Test

npm test

Lint

npm run lint

Support

Visit Drop Cowboy for support or check the API Documentation.

License

UNLICENSED - Private use only (for now)

When published publicly, this will be licensed under MIT.