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

@scriptivox/mcp-server

v1.0.4

Published

MCP server for Scriptivox AI transcription — transcribe audio/video from any AI assistant

Downloads

593

Readme

@scriptivox/mcp-server

MCP (Model Context Protocol) server for Scriptivox — AI-powered audio and video transcription.

Turn any AI assistant into a transcription powerhouse. Transcribe audio and video from URLs with 99% accuracy, speaker diarization, 98+ languages, and word-level timestamps.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "scriptivox": {
      "command": "npx",
      "args": ["-y", "@scriptivox/mcp-server"],
      "env": {
        "SCRIPTIVOX_API_KEY": "sk_live_YOUR_KEY"
      }
    }
  }
}

Claude Code

claude mcp add scriptivox -- npx -y @scriptivox/mcp-server

Then set the environment variable SCRIPTIVOX_API_KEY=sk_live_YOUR_KEY.

Docker

docker run -e SCRIPTIVOX_API_KEY=sk_live_YOUR_KEY sparkleofficialmain/scriptivox-mcp-server

Other MCP Clients

Any MCP-compatible client can use this server via stdio transport:

SCRIPTIVOX_API_KEY=sk_live_YOUR_KEY npx -y @scriptivox/mcp-server

Getting an API Key

  1. Sign up at scriptivox.com
  2. Go to Dashboard > API
  3. Create an API key
  4. Add credits ($5 minimum — API pricing is $0.20/hour of audio)

Tools

Discovery Tools (no API key required)

| Tool | Description | |------|-------------| | get_supported_languages | List all 98+ supported transcription languages | | get_pricing | View plans and API pricing | | get_product_info | Learn about Scriptivox capabilities | | get_api_docs | API documentation and quickstart guide |

Transcription Tools (API key required)

| Tool | Description | |------|-------------| | transcription_url | Transcribe audio/video from a URL — the main feature | | transcription_status | Check status of a running transcription | | check_balance | View your API credit balance |

Usage Examples

Once connected, just ask your AI assistant:

  • "Transcribe this podcast: https://example.com/episode.mp3"
  • "Transcribe this meeting recording with speaker identification"
  • "What languages does Scriptivox support?"
  • "How much does Scriptivox transcription cost?"
  • "Check my Scriptivox balance"

Resources

The server exposes these MCP resources for AI assistants to read:

  • scriptivox://pricing — Plans and rates
  • scriptivox://languages — Supported languages
  • scriptivox://api-docs — API reference

Prompts

  • transcribe-audio — Pre-built prompt for URL transcription
  • meeting-notes — Transcribe a meeting and generate structured notes

Configuration

| Environment Variable | Description | Required | |---------------------|-------------|----------| | SCRIPTIVOX_API_KEY | Your API key (sk_live_...) | For transcription tools |

Pricing

  • Free plan: 3 transcriptions/day, 30 min max
  • Pro plan: $20/month — unlimited transcriptions
  • API: $0.20/hour of audio (pay-as-you-go)

Links

License

MIT