@scriptivox/mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SCRIPTIVOX_API_KEY | Yes | Your Scriptivox API key (sk_live_...). Required for transcription tools. | |
| SCRIPTIVOX_API_URL | No | Custom API base URL (defaults to production). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_supported_languagesA | List all languages supported by Scriptivox for audio/video transcription. Returns language names and ISO codes. No API key required. |
| get_pricingA | Get Scriptivox pricing information including subscription plans (Free, Pro, Team) and API pay-as-you-go rates. Includes signup URLs. No API key required. |
| get_product_infoA | Get information about Scriptivox capabilities: transcription, audio tools, video tools, subtitle tools, meeting bot, or API. No API key required. |
| get_api_docsA | Get Scriptivox API documentation. Sections: quickstart, transcribe, result, list, cancel, delete, upload, balance, webhooks, errors. No API key required. |
| check_balanceA | Check your Scriptivox API credit balance, available hours, and pricing. Requires a configured API key. |
| transcribe_urlA | Transcribe audio or video from a public URL using Scriptivox AI. Supports 119 languages, speaker diarization, and word-level timestamps. RECOMMENDED: always pass the |
| transcribe_statusA | Check the status of a Scriptivox transcription job. Use this for long-running transcriptions, after a timeout, or to verify completion. Requires a configured API key. |
| transcription_urlA | [DEPRECATED — use transcribe_url instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x. Will be removed in 2.0.0. Identical behavior to transcribe_url. |
| transcription_statusA | [DEPRECATED — use transcribe_status instead] Alias kept for backward compatibility with @scriptivox/mcp-server@1.0.x. Will be removed in 2.0.0. Identical behavior to transcribe_status. |
| transcribe_uploadA | Transcribe a LOCAL file by uploading it to Scriptivox. Drives the 3-step upload flow internally. Same options as transcribe_url. Use when the file isn't on a public URL. Max file size 5 GB. Requires a configured API key. |
| transcribe_cancelA | Cancel an in-flight Scriptivox transcription and release any reserved balance. Idempotent. Returns 409 CONFLICT on already-terminal jobs. Requires a configured API key. |
| transcribe_deleteA | Soft-delete a Scriptivox transcription record. Idempotent. Returns 409 CONFLICT if the job is still in-flight — cancel first via transcribe_cancel. Requires a configured API key. |
| list_transcriptionsA | List recent transcriptions for the configured API key, with optional status/date filters and cursor pagination. The full transcript body is omitted — fetch transcribe_status per id to read it. Requires a configured API key. |
| export_transcriptA | Export a completed Scriptivox transcript as SRT subtitles, WebVTT subtitles, or plain text. Supports segmentation knobs (max_words, max_chars, max_duration, sentence_aware, include_speakers, strip_chars). Requires the transcription to be in |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| transcribe-audio | Transcribe audio or video from a URL. Paste a link and get the full transcript with optional speaker identification. |
| meeting-notes | Transcribe a meeting recording and generate structured meeting notes with action items, key decisions, and speaker attribution. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Scriptivox Pricing | Subscription plans (Free, Pro, Team) and API pay-as-you-go rates |
| Scriptivox Supported Languages | Full list of 98+ supported transcription languages with ISO codes |
| Scriptivox API Documentation | Complete API reference for the Scriptivox transcription API |
TDQS
Scored across 14 tools
Core transcription operations (transcribe, cancel, status, delete, export, list) are clearly distinct and easy to select between. The main source of ambiguity is the two deprecated aliases (transcription_url/transcription_status) that duplicate existing tools, and get_product_info/get_pricing have slight overlap.
Tool names generally follow a consistent verb_noun pattern: get_* for informational methods and transcribe_* for job operations. The deprecated transcription_url and transcription_status break the otherwise consistent transcribe_* naming convention, and list_transcriptions/export_transcript use slightly different verb placement.
14 tools is reasonable for a transcription API server covering metadata, job lifecycle, and export capabilities. The count is slightly padded by two redundant deprecated aliases, but they are clearly labeled and do not harm the overall scope significantly.
The server covers the transcription lifecycle well: create via URL or upload, check status, cancel, list, soft-delete, and export finished transcripts. Supporting operations for languages, pricing, balance, and API docs make the tool surface feel complete for real-world usage without obvious dead ends.