Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SCRIPTIVOX_API_KEYYesYour Scriptivox API key (sk_live_...). Required for transcription tools.
SCRIPTIVOX_API_URLNoCustom 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

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
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 language parameter explicitly when you know the audio language — auto-detect has a small failure rate on short clips, code-switched audio, or files starting with music. Requires a configured API key.

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 completed status. Requires a configured API key.

Prompts

Interactive templates invoked by user choice

NameDescription
transcribe-audioTranscribe audio or video from a URL. Paste a link and get the full transcript with optional speaker identification.
meeting-notesTranscribe 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

NameDescription
Scriptivox PricingSubscription plans (Free, Pro, Team) and API pay-as-you-go rates
Scriptivox Supported LanguagesFull list of 98+ supported transcription languages with ISO codes
Scriptivox API DocumentationComplete API reference for the Scriptivox transcription API

TDQS

A4.1/5.0

Scored across 14 tools

Disambiguation4/5

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.

Naming Consistency4/5

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.

Tool Count4/5

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.

Completeness5/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues