Skip to main content
Glama

Transcribe Tool

transcribe

Transcribe an already-uploaded video (a hashid from create_upload, or list_videos) into time-coded text. This is FREE and only needs an account, no subscription.

To use a local file: call create_upload, PUT the bytes to the returned upload_url, then pass that video id here as video. Do NOT call complete_upload for transcription -- that starts the paid clip pipeline; this free tool reads the uploaded file directly. Optionally set language (e.g. "en", omit to auto-detect) and diarize (label speakers, default true).

Processing is ASYNCHRONOUS: this returns a tool_job hashid and status: "queued". Poll get_tool_job_status with the tool_job until it reports completed, then it returns downloadable json/srt/vtt URLs.

Free usage is rate-limited per day with a per-file size and duration cap; if you hit a limit the error explains how to lift it. The nudge field is an optional suggestion, not part of the transcript.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
videoYesThe uploaded video id (hashid) from create_upload (no complete_upload needed) or list_videos.
diarizeNoWhether to label distinct speakers. Defaults to true.
languageNoOptional spoken-language code, e.g. "en". Omit to auto-detect.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.7/5.0
Behavior5/5

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

Annotations are empty, so the description carries the full burden, and it excels: it discloses asynchronous processing ('returns a tool_job hashid and status: queued'), polling expectations, output formats (json/srt/vtt URLs), free/rate-limited nature, file caps, and the non-substantive 'nudge' field. This is rich context that goes beyond what any structured field could provide.

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?

The description is structured into four clear paragraphs: core purpose, upload setup, async processing, and limits/notes. Every sentence adds necessary context—no filler—and the main action is front-loaded.

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

Completeness5/5

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

For a tool involving upload state, async job polling, and rate limits, the description covers everything an agent needs: how to prepare input, how to avoid the wrong pipeline, how to retrieve results, and what to do on rate limits. No output schema exists, but the description explains the return shape sufficiently.

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

Parameters3/5

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

Schema coverage is 100% and the schema descriptions already explain each parameter ('e.g. "en", omit to auto-detect', 'Defaults to true', 'from create_upload ... or list_videos'). The description essentially restates this same information, adding pipeline context but little new parameter-level meaning. Baseline 3 is appropriate given high schema coverage.

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

Purpose5/5

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

The description opens with a specific verb and resource: 'Transcribe an already-uploaded video ... into time-coded text.' It clearly differentiates from the paid clip pipeline by explicitly warning 'Do NOT call complete_upload for transcription,' and from other siblings like get_transcript by framing this as the job-starting tool.

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

Usage Guidelines5/5

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

Provides explicit when-to-use and when-not-to-use guidance: it says to use create_upload for local files, not to use complete_upload because that starts the paid pipeline, and to poll get_tool_job_status for results. It also covers optional parameters and rate-limit conditions, so an agent knows exactly how to select and invoke 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.

Resources