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

@neosapience/n8n-nodes-typecast

v1.2.3

Published

n8n node for Typecast TTS API integration

Readme

n8n-nodes-typecast

npm version License: MIT

Integrate Typecast AI TTS into your n8n workflows with this community node.

Features

  • Voice Resource
    • Clone Voice: create a quick-cloned custom voice from a WAV or MP3 binary input
    • Delete Cloned Voice: delete a quick-cloned voice by its uc_... voice ID
    • Get All Voices: list voices with model / gender / age / use_case filters
    • Get Voice: look up a single voice by ID via the V2 API
    • Recommend Voices: find voice candidates from a text description
  • Speech Resource
    • Text to Speech: convert text to speech using a selected voice
    • Text to Speech (Streaming): low-latency chunked audio via POST /v1/text-to-speech/stream
    • Text to Speech with Timestamps: audio + word / character alignment for SRT / WebVTT caption generation
  • Subscription Resource
    • Get My Subscription: plan tier, credit usage, and concurrency limit at runtime
  • Output controls
    • target_lufs: absolute loudness normalization (-70.0 ~ 0.0 LUFS); mutually exclusive with Volume on the non-streaming endpoint

Node Structure

  • Node: Typecast
    • Resources: voice, speech, subscription
    • Operations:
      • voice: clone, delete, getMany, getOne, recommend
      • speech: textToSpeech, textToSpeechStream, textToSpeechWithTimestamps
      • subscription: getMy

Credentials Setup

  1. Get your API key from Typecast Dashboard
  2. In n8n, add new credentials of type Typecast API
  3. Enter your API key

Usage Example

  1. Add the Typecast node to your workflow
  2. Select a resource and operation (e.g., Speech > Text to Speech)
  3. Provide required parameters (e.g., Voice ID, Text)
  4. Connect and run your workflow

Quick Cloning Example

  1. Add a node that outputs an audio file as binary data, such as Read/Write Files from Disk or an HTTP download node.
  2. Add Typecast > Voice > Clone Voice.
  3. Set Audio Binary Property to the binary property name from the previous node, usually data.
  4. Set Voice Name and Model, then run the node.
  5. Use the returned voice_id (uc_...) in a following Typecast > Speech > Text to Speech node by selecting Voice ID By ID.
  6. When the cloned voice is no longer needed, pass the same uc_... ID to Typecast > Voice > Delete Cloned Voice.

Installation

Via npm

npm install @neosapience/n8n-nodes-typecast

Via n8n Community Nodes

Follow the n8n community node installation guide.

In n8n, go to Settings > Community Nodes and install:

@neosapience/n8n-nodes-typecast

Compatibility

  • n8n v1.0+

Development

# Install dependencies
npm install

# Build the node
npm run build

# Lint & format
npm run lint
npm run format

# Run development mode
npm run dev

Resources

License

MIT