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

v0.1.6

Published

n8n node for VidNavigator MCP HTTP API

Readme

VidNavigator for n8n

VidNavigator MCP integration for n8n. Search, analyze, and transcribe videos directly in your workflows, plus run any VidNavigator MCP tool dynamically.

Homepage: https://vidnavigator.com

Installation

In n8n:

  • Settings → Community Nodes → Install → enter n8n-nodes-vidnavigator.

Self-hosted via Docker (example mount):

  • Ensure the package is available in the container under /root/.n8n/custom or install from the UI above.

Credentials

App: VidNavigator API

Fields:

  • Base URL: https://api.vidnavigator.com/mcp/
  • Token: your VidNavigator API key (Bearer token)

How to get an API key:

  1. Go to https://vidnavigator.com and sign up
  2. Click the user icon → DevTools
  3. Create an API key. Copy it

Operations

  • Analyze Video: Summarize or answer a question about a YouTube video
  • Get Video Transcript: Return the transcript for a video
  • Answer Follow-Up Question: Ask a follow-up question about a video
  • Transcribe Video (Non-YouTube): Transcribe a non-YouTube video URL
  • Search Videos: Find relevant videos with filters
  • Run MCP Tool (Dynamic): Select any tool from VidNavigator MCP (loaded via tools/list) and provide JSON arguments
  • Custom Request: Make a custom HTTP request to the MCP endpoint

Notes:

  • Dynamic tool discovery uses the MCP tools/list endpoint and calls tools via tools/call.
  • Arguments for dynamic tools are provided as a JSON object.

Examples

Run MCP Tool (Dynamic):

  • Tool: analyze_video
  • Arguments:
{"video_url":"https://www.youtube.com/watch?v=ImT_k6EcMks","analysis_type":"summary"}

Search Videos:

  • Query: n8n tutorial
  • Optional: Start Year, End Year, Focus, Max Results

Analyze Video:

  • Video URL: https://www.youtube.com/watch?v=ImT_k6EcMks
  • Analysis Type: summary or question
  • Question (only if Analysis Type = question)

Compatibility

  • Requires Node.js 20+
  • Works with recent n8n versions (1.x)

If you plan to use this node as a Tool in n8n AI Agents, ensure your instance allows tool usage for community packages. For some setups this may require an environment flag such as N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true.

Local development

Clone, install, build:

npm install
npm run build

For a Docker-based n8n dev setup, ensure the built dist/ is mounted into /root/.n8n/custom/n8n-nodes-vidnavigator and start n8n.

Publish

  1. Lint and build:
npm run lint
npm run build
  1. Publish to npm:
npm publish
  1. Submit to the n8n Community Nodes for marketplace listing.

License

MIT