npm @scriptivox/mcp-serverstreamable-httpMITupdated 11d ago
MCP (Model Context Protocol) server for Scriptivox — AI-powered audio and video transcription.
transcription で何ができる?
@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 or local files with 99% accuracy, speaker diarization, 119 languages, and word-level timestamps. Plus full CRUD on transcriptions (cancel, delete, list) and caption export in SRT / WebVTT / plain text.
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 platform.scriptivox.com
- Go to Keys in the dashboard
- Create an API key (starts with
sk_live_...) - Add credits at Billing ($5 minimum — API pricing is $0.20/hour of audio)
Tools
Discovery tools (no API key required)
| Tool | Description |
|---|---|
get_supported_languages |
List all 119 supported transcription languages with ISO codes |
get_pricing |
View plans, API pricing, and per-file limits |
get_product_info |
Learn about Scriptivox features (transcription, audio-tools, video-tools, subtitle-tools, meeting-bot, api, all) |
get_api_docs |
API documentation sections (quickstart, transcribe, result, list, cancel, delete, upload, balance, webhooks, errors, all) |
Transcription tools (API key required)
| Tool | Description |
|---|---|
transcribe_url |
Transcribe audio/video from a public URL (Google Drive, Dropbox, OneDrive, or direct file URLs). Supports language, diarize, speaker_count, align, webhook_url, idempotency_key, await_completed. |
transcribe_upload |
Transcribe a LOCAL file. Drives the 3-step upload flow internally. Up to 5 GB. |
transcribe_status |
Check the status of a transcription by ID. Returns the full transcript when completed. |
transcribe_cancel |
Cancel an in-flight transcription. Refunds reserved balance. Idempotent. |
transcribe_delete |
Soft-delete a transcription record. Idempotent. Refuses to delete in-flight jobs. |
list_transcriptions |
List recent transcriptions with status, from, to, limit, cursor, order filters. |
export_transcript |
Export a completed transcript as SRT subtitles, WebVTT subtitles, or plain text. Segmentation knobs: max_words, max_chars, max_duration, sentence_aware, include_speakers, strip_chars. |
check_balance |
View your API credit balance and estimated hours available. |
Tip: always pass language when you know it
Auto-detection works in most cases but has a small failure rate on short clips, code-switched audio, or files starting with music. Passing the ISO code is both faster and more accurate.
Usage examples
Once connected, ask your AI assistant:
- "Transcribe this podcast: https://example.com/episode.mp3 — it's in English"
- "Transcribe ~/Downloads/meeting.m4a with speaker identification"
- "Show me my last 5 transcriptions"
- "Cancel transcription abc123-…"
- "Export transcription abc123-… as SRT subtitles, 2 words per caption"
- "What languages does Scriptivox support?"
- "Check my Scriptivox balance"
Resources
The server exposes these MCP resources for AI assistants to read:
scriptivox://pricing— Plans and ratesscriptivox://languages— Supported languagesscriptivox://api-docs— API reference
Prompts
transcribe-audio— Pre-built prompt for URL transcriptionmeeting-notes— Transcribe a meeting and generate structured notes
Configuration
| Environment Variable | Description | Required |
|---|---|---|
SCRIPTIVOX_API_KEY |
Your API key (sk_live_...) |
For transcription tools |
SCRIPTIVOX_API_URL |
Custom API base URL | No (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)
Links
- Scriptivox — Main website
- API Documentation — Full API reference
- Dashboard — Manage your account
- Smithery — MCP server registry
License
MIT
インストール
transcription をクライアントに追加します。お使いのものを選んでください。
{
"servers": {
"mcp-server": {
"type": "http",
"url": "https://platform.scriptivox.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp-server -- npx -y @scriptivox/mcp-servercodex mcp add mcp-server -- npx -y @scriptivox/mcp-serveramp mcp add mcp-server -- npx -y @scriptivox/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@scriptivox/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @scriptivox/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
スコア
81 / 100
優秀
- ドキュメント25/25
- メンテナンス25/25
- 信頼性13/20
- 機能3/15
- 導入のしやすさ15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 1.1.4最新 | 2026年8月25日 |
| 1.1.3 | 2026年5月22日 |
| 1.0.4 | 2026年5月21日 |
| 1.0.3 | 2026年4月2日 |
| 1.0.2 | 2026年4月1日 |