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

justtranscribe-mcp

v0.1.3

Published

MCP server for JustTranscribe — transcribe public videos and audio into timestamped text from Claude, ChatGPT, Cursor or any MCP client.

Readme

justtranscribe-mcp

MCP server for JustTranscribe — transcribe public videos and audio into accurate, timestamped text without leaving your AI assistant. Paste a YouTube, TikTok or Instagram link in the chat; get the transcript back, export SRT/TXT/Markdown, or pull the AI breakdown of a social video. Spanish, English and dozens of languages are auto-detected.

Two ways to connect — both use the same API key and the same account limits:

| | Transport | For | |---|---|---| | Hosted https://justtranscribe.ai/api/mcp | Streamable HTTP | Claude Code, Cursor, any client that supports remote servers with headers | | This package npx justtranscribe-mcp | stdio | Claude Desktop and other stdio-only clients |

Setup

  1. Create a free API key at https://justtranscribe.ai/api-keys (free during the beta, no card).
  2. Add the server to your client.

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "justtranscribe": {
      "command": "npx",
      "args": ["-y", "justtranscribe-mcp"],
      "env": { "JUSTTRANSCRIBE_API_KEY": "jt_live_..." }
    }
  }
}

Claude Code (hosted variant — no install):

claude mcp add --transport http justtranscribe https://justtranscribe.ai/api/mcp \
  --header "Authorization: Bearer jt_live_..."

Tools

  • transcribe_url — start transcribing a public video/audio link (YouTube, TikTok, Instagram, Facebook, Pinterest, Google Drive). Returns an id; processing takes minutes.
  • get_transcript — poll by id; returns the full text once complete (optionally timestamped segments and the AI analysis).
  • list_transcripts — the account's transcripts, newest first.
  • export_transcript — TXT, SRT, VTT, Markdown or CSV as text.
  • delete_transcript — permanently remove a transcript and its media.
  • get_account — identify the key's account and limits.

Limits

Public links only (no private or login-required videos, no live streams), up to 150 minutes per recording. The server enforces the same limits as the app and the REST API: 120 requests/minute per key, 3 new transcripts/hour, one processing at a time during the beta. File upload isn't possible over MCP — use the app or the REST API.

Environment

  • JUSTTRANSCRIBE_API_KEY (required) — your jt_live_… key.
  • JUSTTRANSCRIBE_API_URL (optional) — API origin override; defaults to https://justtranscribe.ai.

MIT © Bramonti Ventures · Docs: https://justtranscribe.ai/mcp