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

@transcribevideototext/mcp-server

v0.3.0

Published

Model Context Protocol server for the VideoToText transcription API.

Downloads

465

Readme

@transcribevideototext/mcp-server

Model Context Protocol server for VideoToText — transcribe audio and video from Claude Code, Cursor, Codex, or Claude Desktop.

Claude Code

claude mcp add vtt -e VTT_API_KEY=vtt_… -- npx -y @transcribevideototext/mcp-server

Then ask: "Transcribe ./interview.mp4 with speaker labels." — or paste a link: "Summarize the main ideas from https://www.youtube.com/watch?v=…"

Transcribe from a link

Paste a url into transcribe and it's handled one of two ways:

  • A page from a video or social site — YouTube, X, LinkedIn, TikTok, Facebook, Instagram, Vimeo, and hundreds of other sites — is downloaded on your own machine first (so it uses your IP, avoiding the datacenter blocking that breaks server-side extraction), then uploaded and transcribed. The downloader is fetched automatically on first use (~30 MB, cached); audio is preferred to keep downloads small.
  • A direct media link (a URL ending in a media file like .mp3 or .mp4) is fetched server-side, with no local download.

In short: if your link points straight at an audio/video file, it's pulled by the API; any other link is downloaded locally first. This local download happens only with the local (stdio) server below — the hosted remote server fetches every url server-side.

Public content only. Gated, private, or age-restricted posts (which require a login) are not supported.

Other clients

Add to your MCP config (Cursor, Claude Desktop, etc.):

{
  "mcpServers": {
    "vtt": {
      "command": "npx",
      "args": ["-y", "@transcribevideototext/mcp-server"],
      "env": { "VTT_API_KEY": "vtt_…" }
    }
  }
}

Get an API key from the dashboard → Developers → API Keys.

Tools

| Tool | Description | | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | transcribe | Transcribe a url (direct media, or a YouTube/X/LinkedIn link downloaded locally), local filePath, or storagePath. Waits for the transcript by default. | | get_transcription | Fetch a job's status + result by id. | | list_transcriptions | List the account's transcriptions. | | delete_transcription | Delete a job (refunds if in progress). | | create_upload_url | Advanced: sign an upload URL to PUT bytes yourself. |

Environment

| Var | Description | | ------------- | ------------------------------- | | VTT_API_KEY | Required. Your vtt_… API key. |