Skip to main content
Glama

get_job_status

Check the status of a transcribe or summarize job. Returns the current state and, when completed, an outputs array. Each output has either content (returned inline) or a presigned, time-limited (1 hour) download_url. Small text outputs (e.g. transcript SRT, clip-candidates, summary) come inline as content; larger outputs — transcript-words JSON for any non-trivial recording, plus video outputs like clip-video / clip-vertical-video — come as a download_url to fetch when needed. Optionally pass format (srt, txt, vtt, json, words) to get the transcript content inline in the top-level transcript field — txt and vtt are derived from the stored SRT; json is v1 (segments only); words is v2 (segments + per-word timestamps matching /.well-known/weftly-transcript-v2.schema.json). Poll this periodically after calling complete_upload — wait at least 60 seconds between checks. For files under 10 minutes, jobs usually complete within 1-2 minutes. For long files (1hr+), expect 10-30 minutes. Derivative jobs (extract_clip, extract_vertical_clip, publish_youtube, clips_vertical, clips_horizontal) have no upload step and no awaiting_upload/awaiting_complete_upload states — a paid derivative job reports processing once its parent source is confirmed still in storage, or a terminal source_expired if the parent source has expired: stop polling, and re-run the parent job named in source_job_id to get a fresh source before retrying.

Also use this to recover from lost state: if the original challenge was lost, call get_job_status(job_id) to retrieve a fresh challenge (status "awaiting_payment") or the upload URL (status "awaiting_upload").

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatNoWhen the job is completed, return the transcript inline in this format instead of only a download URL. Options: "srt" (SubRip with timestamps), "txt" (plain text — no timestamps), "vtt" (WebVTT), "json" (v1, segments only), "words" (v2, segments + per-word timestamps matching /.well-known/weftly-transcript-v2.schema.json). Omit for download URLs only.
job_idYesThe job_id returned from a previous transcribe or summarize call.

TDQS

A4.8/5.0
Behavior5/5

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

With zero annotations provided, the description carries the entire burden of behavioral disclosure — and it delivers. It discloses the return shape (outputs array with either inline content or a 1-hour time-limited download_url), the sizing rule for inline versus URL delivery, the derivative-job state machine (processing vs. terminal source_expired), and the recovery behavior (retrieving fresh challenges when state was lost). Nothing about the tool's behavior is left to inference.

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

Conciseness4/5

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

The description is front-loaded, opening with purpose and output structure before moving to polling cadence. It runs long (roughly 250 words), but most sentences earn their place given the tool's complexity. The derivative-job and state-recovery sections could be tightened or split with headers for readability, which keeps this at a 4 rather than a 5.

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 a tool with no output schema, no annotations, and substantial behavioral complexity (derivative jobs, state recovery, multiple formats), the description is remarkably complete. It covers the return format fully, polling timing, size-based delivery rules, derivative-job exceptions, and recovery usage. An agent has everything it needs to call this correctly across all scenarios.

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 schema already documents both parameters, giving a baseline of 3. The description nonetheless adds genuine meaning: it explains that txt/vtt are derived from the stored SRT, that json is v1 (segments only) while words is v2 (segments + per-word timestamps), and how format interacts with the inline-vs-URL delivery decision. The one gap is that it does not directly restate the job_id requirement, though that is already well covered by the 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 opens with a specific verb+resource: 'Check the status of a transcribe or summarize job.' It goes well beyond a one-line purpose, detailing exactly what the tool returns (current state, outputs array) and which outputs come inline versus via download URL. Against its siblings (transcribe, summarize, complete_upload, extract_clip), its role as the status-poller is unambiguous.

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?

The description gives explicit invocation guidance: 'Poll this periodically after calling complete_upload — wait at least 60 seconds between checks,' with concrete timing expectations for short versus long files. It explicitly carves out when the tool behaves differently (derivative jobs like extract_clip, publish_youtube have no upload step and no awaiting_upload states) and even instructs how to use it for state recovery. This is proactive, actionable usage guidance with clear conditions.

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

A4.4/5.0
Disambiguation4/5

Most tools target distinct tasks (transcribe vs. summarize vs. find_clips, extract_clip vs. extract_vertical_clip, create vs. trigger YouTube). Some overlap exists because summarize and find_clips both produce transcripts, and publish_to_youtube and trigger_youtube_publish are sequential steps that could be confused, but descriptions clarify the boundaries well.

Naming Consistency4/5

The majority follow a verb_noun pattern (complete_upload, extract_clip, find_clips, get_job_status), with a few deviations like the bare verbs 'summarize' and 'transcribe', and 'publish_to_youtube' using a preposition. The pattern is still predictable and readable overall.

Tool Count5/5

11 tools is a well-scoped number for a video/audio processing service covering transcription, summarization, clip extraction, YouTube publishing, and payment testing. Each tool has a clear place, and the count is within the ideal range.

Completeness5/5

The tool surface covers the full lifecycle: job creation (transcribe/summarize/find_clips), payment (mpp_smoke_test, payment challenge flows), upload (complete_upload), status polling (get_job_status), clip extraction (two variants), and YouTube publishing (create/publish/status). No critical gaps are apparent for the stated domain.

Resources