Skip to main content
Glama

get_transcript

Read-onlyIdempotent

Retrieve a processed job's transcript in segments, plain text, or SRT subtitles, with time-range pagination and speaker labels for diarized recordings.

Instructions

Retrieve the transcript of a processed job, lazily and paginated. Formats: "segments" (default — seq, t_ms, t_wall when known, speaker when diarized, text), "text" (plain prose; "S1:" prefixes at speaker changes), "srt" (subtitles, speaker-prefixed cues). Diarized jobs also return the speaker roster (talk time, turns) in the header. Responses are capped (~8k tokens): when truncated=true, continue from the returned next_start_ms. When NOT to use: to find one keyword (use search) or to inspect one moment with visuals (use get_moment). Examples:

  • get_transcript(job_id="a1b2c3d4e5f60718") — whole transcript of a short recording

  • get_transcript(job_id="a1b2c3d4e5f60718", start_ms=0, end_ms=120000) — just the first two minutes

  • get_transcript(job_id="...", format="text") — prose block for summarization

  • get_transcript(job_id="...", format="srt") — subtitle export the user asked for

  • diarized job: segments carry "speaker" + a roster header (top-12 by talk time; speakers_truncated counts the rest)

  • "what did S2 say?" → format="segments", collect entries with speaker=="S2" (labels are in order of first voice)

  • got truncated=true with next_start_ms=421500 → get_transcript(job_id="...", start_ms=421500)

  • user: "what was said between 5:00 and 6:30?" → start_ms=300000, end_ms=390000

  • meeting recording (audio-only job): this tool is the main surface — frames don't exist there

  • correlate speech with logs: each segment's t_wall lines up with your log timestamps

  • wall_clock=null on the job → segments carry t_ms only (relative to video start)

  • 60-min video: page by ranges (e.g. 10-min windows), don't pull from 0 repeatedly

  • no speaker fields on a meeting job → re-run process_media with diarize=true (adds them without re-transcribing)

  • anti-example: "where did they mention checkout?" → search(job_id, "checkout"), not full paging

  • anti-example: screenshots around a remark → get_moment(job_id, start_ms, end_ms)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
end_msNo
formatNosegments
job_idYes
start_msNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior5/5

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

Beyond the annotations (readOnly, idempotent, non-destructive), the description discloses lazy pagination, ~8k token response caps with truncated=true and next_start_ms continuation, diarized speaker roster behavior, and format-specific output fields. These are critical behavioral traits not inferable from the schema or annotations.

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 long, but every sentence carries essential information: purpose, formats, pagination, exclusions, and a dozen usage examples. It is front-loaded with the core operation followed by structured examples, making it dense and efficient with zero fluff.

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?

Given the tool's complexity (multiple formats, pagination, diarization, sibling tools), the description covers all decision points: when to use which format, how to paginate via next_start_ms, how to handle wall_clock=null, and how to re-process with diarize=true. The presence of an output schema means return-structure details are not required, and output behavior is well documented.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by explaining each format value (segments/text/srt), what fields appear (seq, t_ms, t_wall, speaker, text), how start_ms/end_ms work with concrete examples, and how to use next_start_ms for continuation. This adds substantial meaning beyond the bare schema.

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 uses a specific verb+resource ('Retrieve the transcript of a processed job') and immediately scopes it with 'lazily and paginated', formats, and response caps. It explicitly distinguishes from siblings by stating when NOT to use it (search for keywords, get_moment for visuals), making its purpose unmistakable.

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?

It provides explicit guidance with a 'When NOT to use' section naming search and get_moment as alternatives, plus concrete examples for pagination, diarized jobs, meeting audio, and time-range queries. The anti-examples ('where did they mention checkout?' → search) clarify boundaries clearly.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/korovin-aa97/talkthrough-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server