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-chikitsa

v1.0.4

Published

n8n community node for Chikitsa AI Medical Agents

Readme

n8n-nodes-chikitsa

Official n8n community node package for Chikitsa AI — giving your clients native drag-and-drop access to Chikitsa's medical AI agents inside n8n.


📦 Nodes Included

| Node | Description | |------|-------------| | Chikitsa Voice MD | Transcribe & analyse medical audio files using the Chikitsa API |


🚀 Installation

Option A — Install on a Self-Hosted n8n (Recommended)

# 1. Install globally alongside n8n
npm install -g n8n-nodes-chikitsa

# 2. Link it so n8n can discover it
cd ~/.n8n
mkdir -p custom && cd custom
npm install n8n-nodes-chikitsa

# 3. Restart n8n
n8n start

Option B — Install via n8n UI (Self-Hosted)

  1. Go to Settings → Community Nodes
  2. Click Install
  3. Enter n8n-nodes-chikitsa
  4. Click Install

Option C — Docker / Environment Variable

If you run n8n in Docker, add this env variable:

N8N_CUSTOM_EXTENSIONS=n8n-nodes-chikitsa

And install in your Docker image:

RUN cd /usr/local/lib && npm install n8n-nodes-chikitsa

🔑 Setting Up Credentials

  1. In n8n, go to Credentials → New
  2. Search for Chikitsa API
  3. Enter your API Key (from the Chikitsa developer portal)
  4. Optionally set a Request ID Prefix (default: n8n)
  5. Click Save

🎙️ Using Chikitsa Voice MD

Audio from a file upload / previous node

[Webhook / Read Binary File] → [Chikitsa Voice MD] → [Your next step]
  1. Drag Chikitsa Voice MD onto the canvas
  2. Set Audio SourceBinary Field (File Upload)
  3. Set Binary Property to the field name (default: data)
  4. Connect your credentials
  5. Run!

Audio from a URL

  1. Set Audio SourceURL
  2. Paste the public URL of the audio file
  3. Run!

Output

The node returns the full Chikitsa API response plus:

{
  "requestId": "n8n-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "fileName": "consultation.mp3",
  "transcript": "...",
  "analysis": { ... }
}

🔧 Development (for Chikitsa team)

git clone https://github.com/chikitsa/n8n-nodes-chikitsa
cd n8n-nodes-chikitsa
npm install
npm run build        # compiles TypeScript → dist/
npm run dev          # watch mode

To test locally with n8n:

export N8N_CUSTOM_EXTENSIONS="/absolute/path/to/n8n-nodes-chikitsa"
n8n start

📁 Package Structure

n8n-nodes-chikitsa/
├── credentials/
│   └── ChikitsaApi.credentials.ts     # API Key credential definition
├── nodes/
│   └── ChikitsaVoiceMD/
│       ├── ChikitsaVoiceMD.node.ts    # Node logic (TypeScript source)
│       └── chikitsa.svg               # Node icon
├── dist/                              # Compiled output (auto-generated)
├── package.json                       # n8n node discovery config
└── tsconfig.json

📄 License

MIT © Chikitsa