Skip to main content
Glama

export_transcript

Read-onlyIdempotent

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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatYesOutput format.
max_charsNoMax characters per caption segment (default 80).
max_wordsNoMax words per caption segment (default 4).
strip_charsNoCharacters to strip from the transcript before formatting.
max_durationNoMax seconds per caption segment (default 10).
sentence_awareNoBreak at sentence boundaries (default true).
include_speakersNoWhether to prefix caption lines with speaker tags. 'auto' (default), 'true' (always), 'false' (never).
transcription_idYesCompleted transcription ID (UUID).

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description is consistent with them. It adds context beyond the annotations by naming the segmentation knobs and the required completed status and API key, which clarify the state and auth needed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no wasted words: purpose, options, and prerequisites are each addressed. The most important information is front-loaded, and nothing from the schema is unnecessarily repeated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an export tool with 8 fully documented schema parameters, the description provides the key missing context: output formats, segmentation controls, and required state/auth. It does not spell out the exact response shape, but the format list and read-only annotations make the behavior sufficiently clear for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3; the description adds a small layer of meaning by grouping `max_words`, `max_chars`, `max_duration`, `sentence_aware`, `include_speakers`, and `strip_chars` as 'segmentation knobs.' It does not explain the parameters in detail, but this grouping helps an agent understand their shared purpose.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb ('Export') and resource ('completed Scriptivox transcript') and names the three concrete output formats (SRT, WebVTT, text). It is clear, but it does not explicitly differentiate itself from siblings like get_transcript_audio, relying on the format list to imply distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit prerequisites: the transcription must be in `completed` status and an API key must be configured. This tells an agent when calling is valid, though it does not name alternatives or explicitly say when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation3/5

The set contains several near-neighbor groups: deprecated aliases duplicate live tools, and docs/billing/financial tools have fuzzy boundaries. Individual descriptions are detailed and resolve most collisions, but matching the right tool among 39 still requires care.

Naming Consistency3/5

Most tools follow a sensible verb_object style, but the transcribe_* group is inconsistent: transcribe_url/transcribe_upload are verb_object, while transcribe_status/transcribe_cancel/transcribe_delete are really status/cancel/delete operations renamed with a transcribe prefix. The deprecated transcription_status/transcription_url aliases add another naming convention, so the pattern is not reliable across the set.

Tool Count2/5

39 tools is well over the 25+ threshold and creates an overwhelmingly broad surface spanning account management, billing, docs, API jobs, library organization, meeting bots, and automations. Two deprecated duplicates inflate the count further. This would be more coherent split into separate servers or at least pruned of deprecated aliases.

Completeness3/5

Core API transcription lifecycle is covered, and the library/meeting-bot flows have search, tagging, moving, and audio retrieval. However, there is no user-library deletion/rename, no OAuth-side full-transcript access, local upload is non-functional over the hosted endpoint, and webhook management is documented but not exposed as tools. These gaps force agents to work around missing operations.