Sign In

@scriptivox/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scriptivox/mcp-server

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

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
128
14.29%
Maintainers
1
Weekly downloads
 
Created
Source

@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.

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

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

Tools

Discovery Tools (no API key required)

ToolDescription
get_supported_languagesList all 98+ supported transcription languages
get_pricingView plans and API pricing
get_product_infoLearn about Scriptivox capabilities
get_api_docsAPI documentation and quickstart guide

Transcription Tools (API key required)

ToolDescription
transcribe_urlTranscribe audio/video from a URL — the main feature
transcribe_statusCheck status of a running transcription
check_balanceView 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 VariableDescriptionRequired
SCRIPTIVOX_API_KEYYour API key (sk_live_...)For transcription tools
SCRIPTIVOX_API_URLCustom API base URLNo (defaults to production)

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)

License

MIT

Keywords

mcp

FAQs

Package last updated on 01 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts