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

@call-e/n8n-nodes-calle

v0.1.4

Published

n8n community node for creating and monitoring CALL-E AI-agent phone-call tasks.

Downloads

534

Readme

@call-e/n8n-nodes-calle

This package provides an n8n community node for CALL-E AI-agent phone-call workflows. It lets n8n workflows create CALL-E call tasks, fetch their status, wait for completion, and read developer events.

n8n is a workflow automation platform. CALL-E provides a Developer API for server-side AI-agent phone-call tasks.

Installation

Install this package as an n8n community node:

npm install @call-e/n8n-nodes-calle

For local development, run:

npm install
npm run build
npm run dev

The development server starts n8n with the CALL-E node linked into the local custom nodes directory.

Credentials

Create a CALL-E API credential in n8n with:

  • API Key: Your CALL-E API key. The value is stored as a password field.
  • Base URL: Defaults to https://api.heycall-e.com.
  • Request Timeout (MS): Timeout for each individual CALL-E API request.

Do not expose CALL-E API keys in browser code, workflow logs, screenshots, or issue reports.

Operations

The first release focuses on the Call resource:

  • Create: Creates a CALL-E call task.
  • Get: Gets one CALL-E call task by ID.
  • Create and Wait: Creates a call task, then polls until the task reaches completed, failed, or canceled.
  • List Events: Lists developer events for one call task.

Cancel is not included in this release because the current CALL-E Developer API and server SDKs do not expose a cancel call task API.

Call Parameters

Create and Create and Wait support:

  • Phone Number: Required E.164 number, for example +14155550100.
  • Task: Required phone agent task boundary and expected outcome.
  • Idempotency Key: Required. The default expression is based on the n8n execution ID and item index; override it with a business key when you need duplicate prevention across workflow retries.
  • Locale: Optional language and locale hint, for example en-US.
  • Region: Optional routing or country/region hint, for example US.
  • Metadata: Optional JSON object returned with the call task for business-system correlation.
  • Result Schema: Optional JSON object schema for task-level structured output.
  • Recipient Result Schema: Optional JSON object schema for recipient-level structured output.
  • Webhook URL: Optional callback URL for terminal CALL-E events.

Create and Wait also supports:

  • Polling Interval (MS): How often n8n polls CALL-E for the current call status.
  • Timeout (MS): Maximum total wait time before the node fails.

Outputs

The node returns the raw CALL-E API response for the selected operation:

  • Create returns the created call task.
  • Get returns the current call task.
  • Create and Wait returns the final call task after a terminal status.
  • List Events returns the CALL-E events response.

If n8n Continue On Fail is enabled, the node returns an item with an error field instead of stopping the workflow.

Safety

Phone calls are real-world side effects. Use this node only when the workflow has explicit user intent to place the call.

Operational safeguards:

  • Use E.164 phone numbers.
  • Use stable idempotency keys to prevent duplicate call tasks.
  • Keep API keys in n8n credentials only.
  • Avoid logging full phone numbers or secrets in workflow outputs.
  • For recurring reminders, let the n8n workflow or host scheduler manage recurrence. CALL-E should handle one call task per scheduled workflow run.
  • Keep workflows inactive until credentials, recipient numbers, task wording, and test paths are reviewed.
  • Stop a running n8n execution from the n8n execution view if a call workflow needs cancellation.
  • Do not use this node for emergency, medical, legal, or financial advice workflows without an appropriate human-reviewed safety process.

Create and Wait has a node-level timeout. If the timeout expires, the n8n execution fails or returns an error item when Continue On Fail is enabled. A timeout does not guarantee that the provider-side call has been canceled; check CALL-E for the latest call status.

Compatibility

This package is intended for current n8n community node development flows using @n8n/node-cli.

Release

This package is published from this repository through .github/workflows/publish.yml.

To publish a release, make sure package.json and package-lock.json have the target version, then push a matching tag:

git tag v0.1.2
git push origin v0.1.2

The workflow validates that the tag version matches package.json, runs lint, tests, build, and publishes with npm provenance.

For npm Trusted Publishing, configure npm with:

  • Repository owner: CALLE-AI
  • Repository name: n8n-nodes-calle
  • Workflow filename: publish.yml
  • Environment: leave blank unless the workflow is later changed to use one

If Trusted Publishing is not configured, add an npm automation token as the GitHub Actions secret NPM_TOKEN.

Resources