Skip to main content
Glama

ffpipe — video conversion, probe & frames

Server Details

Convert, probe, and split video into frames — real FFmpeg, paid per job with x402 on Base.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
100.0% over 40 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.6/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct operation: convert_video transforms video, extract_frames pulls stills, probe_media inspects metadata, get_job_status polls jobs, get_balance queries credits, and leave_feedback collects input. Although several tools share the async upload/poll workflow, their purposes are clearly separated by name and description.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (convert_video, extract_frames, get_balance, get_job_status, leave_feedback, probe_media). The two 'get_' tools both perform lookups, keeping the pattern predictable.

Tool Count5/5

Six tools is well-scoped for a video conversion/probe/frames API. Each tool serves a necessary role—processing, status, billing, and feedback—without redundancy or bloat.

Completeness4/5

The core workflows are covered: probe input, convert video, extract frames, poll status, and check balance. Minor gaps exist such as no job cancellation or listing, but the feedback tool provides an escape hatch for missing operations.

Available Tools

6 tools
convert_videoAInspect

Queue an asynchronous video conversion: fetches sourceUrl (or, with upload: true, waits for you to PUT the bytes to the returned uploadUrl), converts to MP4 scaled to fit maxWidth x maxHeight (defaults 1920x1080, cap 4096). Returns { jobId, status: "queued" | "awaiting_upload", statusUrl, uploadUrl?, uploadExpiresAt? } - poll with get_job_status (jobId + the t token from statusUrl) until finished/error. Download results within 24 hours. Paid: $0.02 USDC via x402 (base mainnet), or a convert-kind retryVoucher.

ParametersJSON Schema
NameRequiredDescriptionDefault
uploadNoSet true to upload the bytes yourself instead of giving a sourceUrl (exactly one of the two). The paid result then returns status awaiting_upload plus uploadUrl and uploadExpiresAt: HTTP PUT the raw bytes to uploadUrl before the deadline (201 -> queued). You are charged at acceptance; an abandoned upload window errors with no refund, while a pipeline failure after your upload earns a retryVoucher.
maxWidthNoMax output width, default 1920
maxHeightNoMax output height, default 1080
sourceUrlNohttps URL of the input media (<= 100 MiB). Fetched from datacenter IP ranges - prefer a presigned URL from storage you control; no IP literals, no localhost/.internal/.local. Provide EXACTLY ONE of sourceUrl or upload.
retryVoucherNoRetry-voucher credential (`uuid.hmac`) from a failed paid job's status - pays for this call instead of x402. Single use, kind-matched.

TDQS

A4.5/5.0
Behavior5/5

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

The description adds substantial behavioral detail beyond annotations: async queueing, upload behavior, payment requirement ($0.02 via x402), retryVoucher alternative, 24-hour download window, and the need to poll until finished/error. Since annotations only give generic read/write/side-effect flags, the description carries the burden, and it does so thoroughly.

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?

Six dense clauses are packed with essential owner: function, source/upload modes, dimensions, output format, polling, retention, cost, and payment alternatives. No filler; the main operation is frontloaded.

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 no output schema, the description compensates by specifying return fields, statuses, polling relationship, upload target, timeout/download window, and cost. This is complete enough for an agent to invoke the tool successfully without external documentation.

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 description coverage is 100%, so the schema already explains every parameter, including defaults and constraints. The description repeats and slightly recontextualizes maxWidth/maxHeight defaults, the sourceUrl fetch behavior, and the upload path, but it does not materially add per-parameter meaning beyond schema; it mainly explains the overall workflow and payment.

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 by naming the operation — queue asynchronous video conversion — and states exact output format and scope (fetches sourceUrl or upload, converts to MP4, scales to fit dimensions). This distinguishes it from siblings like extract_frames, probe_media, and get_job_status, which are clearly different operations.

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 provides strong context for when the tool should be used: it is the entry point for conversion, then the caller polls get_job_status with the returned jobId and token. It also clearly distinguishes the sourceUrl vs upload:true paths. It does not explicitly say when not to use it relative to extract_frames or probe_media, or name those alternatives, so it stops one point short of fully explicit deferral.

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

extract_framesAInspect

Queue an asynchronous frame extraction - the tool to reach for when you need to SEE a video: fetches sourceUrl (or, with upload: true, waits for you to PUT the bytes to the returned uploadUrl) and extracts still frames as jpeg, webp or png. mode is REQUIRED and picks the sampling (all, every_nth, interval, keyframes, evenly_spaced, timestamps); there is no default because every candidate implies a rate you did not ask for. A finished job's resultUrl is a JSON MANIFEST: source display dimensions, fps, rotation, an echo of your parameters, frame_count, and one entry per frame with index, pts_time (seconds in the source) and its own download url on this gateway - fetch the manifest, then the frames you want. Need just ONE frame at a moment - a thumbnail, poster frame or screenshot at a given second? Use mode "timestamps" with a single value, e.g. timestamps=[5], format=jpeg; the result is still a one-entry manifest pointing at that image (if you would rather have the image bytes returned directly instead of via a manifest, tell us with leave_feedback - demand decides whether we add it). Up to 1000 frames per job; "all"/"interval" on a long source can exceed that and fail fast, so prefer interval, evenly_spaced or timestamps. Unreadable input, audio-only files and still images FAIL here (probe_media diagnoses those). Download within 24 hours. Paid: $0.01 USDC via x402 (base mainnet), or a frames-kind retryVoucher.

ParametersJSON Schema
NameRequiredDescriptionDefault
nNoevery_nth only: keep every Nth DECODED frame (a frame index, not a time).
fpsNointerval only: frames per second, may be below 1 (0.5 = one frame every two seconds).
modeYesHow to pick frames (required): "all" every frame; "every_nth" every Nth decoded frame (needs n); "interval" a fixed rate in seconds (needs fps, may be below 1); "keyframes" keyframes only, cheap on long sources; "evenly_spaced" count samples across the window (needs count); "timestamps" one frame per given second (needs timestamps).
countNoevenly_spaced only: how many frames to spread across the window.
formatNoImage format of each frame, default jpeg (small and accepted by every vision API). png is lossless.
uploadNoSet true to upload the bytes yourself instead of giving a sourceUrl (exactly one of the two). The paid result then returns status awaiting_upload plus uploadUrl and uploadExpiresAt: HTTP PUT the raw bytes to uploadUrl before the deadline (201 -> queued). You are charged at acceptance; an abandoned upload window errors with no refund, while a pipeline failure after your upload earns a retryVoucher.
endTimeNoWindow end in seconds (0 or omitted = to the end); must exceed startTime.
qualityNoEncoder quality for jpeg/webp, default 85; ignored for png.
maxFramesNoCeiling on frames produced, default and hard limit 1000. A request whose sampling would exceed it fails before any decoding.
sourceUrlNohttps URL of the input media (<= 100 MiB). Fetched from datacenter IP ranges - prefer a presigned URL from storage you control; no IP literals, no localhost/.internal/.local. Provide EXACTLY ONE of sourceUrl or upload.
startTimeNoWindow start in seconds (default 0).
timestampsNotimestamps only: seconds into the source, one accurate frame each. Sorted for you.
retryVoucherNoRetry-voucher credential (`uuid.hmac`) from a failed paid job's status - pays for this call instead of x402. Single use, kind-matched.
maxOutputWidthNoFit box width applied to the source's DISPLAY dimensions: aspect preserved, never upscaled, oriented to the input. 0 = no limit on this axis.
maxOutputHeightNoFit box height, same rules as maxOutputWidth.

TDQS

A4.8/5.0
Behavior5/5

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

Annotations only provide basic hints (readOnlyHint=false, destructiveHint=false). The description goes far beyond, disclosing async behavior, upload flow with charging at acceptance, 24-hour download window, failure cases, and the manifest structure. It explains the retryVoucher mechanism and x402 payment. This is exemplary transparency.

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 long but well-structured, front-loading purpose and mode requirement, then covering output, edge cases, and payment. Every sentence adds value, though some redundancy exists (e.g., 'Up to 1000 frames' repeats maxFrames schema). It could be slightly trimmed but is efficiently organized.

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 (15 params, async, payment, no output schema), the description covers all essentials: input methods, output manifest, mode semantics, limits, failure modes, payment, and even a single-frame shortcut. Nothing an agent needs to invoke it correctly is missing.

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 covers 100% of parameters with descriptions, so baseline is 3. The description adds relational context: why mode is required ('no default because every candidate implies a rate you did not ask for'), how all/interval can exceed limits, and the upload parameter's detailed flow. It enriches understanding without repeating schema text.

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 clearly states the tool's purpose: 'Queue an asynchronous frame extraction - the tool to reach for when you need to SEE a video.' It specifies the verb, resource, and even the output format (manifest of frames). It distinguishes itself from siblings by explicitly positioning itself as the go-to for seeing video, contrasting with probe_media for diagnostics and convert_video for conversions.

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 guidance: 'the tool to reach for when you need to SEE a video.' It also covers when not to use it: 'Unreadable input, audio-only files and still images FAIL here (probe_media diagnoses those).' It advises on mode selection for long sources ('prefer interval, evenly_spaced or timestamps') and even suggests alternative modes for single frames. This is comprehensive.

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

get_balanceCheck your credit balance (free)A
Read-onlyIdempotent
Inspect

Free. Reports the credit balance of the account this client is connected to, plus what one credit is worth, what each operation costs in credits, the monthly free allowance and whether a card is on file to unlock it. Takes no input: it reads the account behind the credential your client already connected with. If you have a connected account, paid tools are funded from this balance and never present a payment challenge - so call this to find out how much work you can still queue, and top up at the account page named in the answer. Anonymous callers (x402 buyers, who pay per call instead) have no balance and get an unauthorized error; either way nothing here is charged.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/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. The description adds value beyond these by stating it is free, takes no input, reads the account behind the credential, never presents a payment challenge, and details the error case for anonymous callers. No contradiction with annotations. The extra context about permissions and error handling is helpful.

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 well-structured, starting with the key fact 'Free' and then the core purpose. It is about 3-4 sentences long, each sentence adding distinct value (balance, cost breakdown, usage guidance, error case). It is not overly verbose, but could be slightly tighter by removing redundant phrasing like 'connected to' and 'connected with'. Still, it is efficient and clear.

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 no output schema, the description fully explains what the tool returns: credit balance, credit worth, operation costs, monthly free allowance, and whether a card is on file. It also mentions the account page name for top-ups. The error case for anonymous callers is covered. The tool has no parameters and is simple, but the description leaves no gaps for an AI agent to understand its behavior and output.

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?

The tool has zero parameters, so description cannot add parameter-level meaning. According to guidelines, baseline is 4 for 0 params. The description correctly notes 'Takes no input: it reads the account behind the credential your client already connected with.' This is sufficient and does not repeat schema information.

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 clearly states it reports the credit balance and related financial details (credit worth, operation costs, free allowance, card on file). It is a unique tool among siblings (convert_video, extract_frames, etc.) as it focuses on account balance and usage limits, not media processing. The verb 'reports' and resource 'credit balance' are specific and unambiguous.

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 explicitly advises calling this tool to find out how much work can be queued and to get the top-up link. It distinguishes between paid account holders (who have balance) and anonymous callers (who get unauthorized error). It does not explicitly name alternatives, but the context is clear and the sibling tools are unrelated (e.g., convert_video, get_job_status). The guidance is practical and sufficient for an AI agent to decide when to use it.

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

get_job_statusGet job status (free)A
Read-onlyIdempotent
Inspect

Free status lookup for a job accepted by convert_video / probe_media / extract_frames. Requires the job's ownership token - the t query parameter of the statusUrl returned at acceptance (store the whole statusUrl; it cannot be regenerated). Status goes [awaiting_upload ->] queued -> finished | error; awaiting_upload jobs report uploadExpiresAt but NEVER the uploadUrl (that credential is handed out exactly once, in the acceptance result); finished jobs carry resultUrl/thumbnailUrl/durationMs (served by this gateway, free to re-download within 24 hours of completion; GET them following redirects); a failed charged job carries retryVoucher. A bad token and an unknown jobId both answer not_found, deliberately.

ParametersJSON Schema
NameRequiredDescriptionDefault
jobIdYesJob id from the acceptance
tokenYesOwnership token - the `t` query parameter of statusUrl

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already signal readOnlyHint, idempotentHint, and destructiveHint. The description goes far beyond by detailing the status lifecycle (including awaiting_upload, queued, finished, error), explaining what each state returns (e.g., uploadExpiresAt, resultUrl, retryVoucher), and even noting that bad tokens vs unknown jobIds both return not_found deliberately. No contradictions.

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 a single dense paragraph that packs a lot of information without wasted words. It front-loads the purpose and token requirement, then efficiently covers the status lifecycle. While it's somewhat long, every sentence adds value, so it earns a high score for conciseness given the complexity.

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?

Despite no output schema, the description fully documents what the response contains for each status (uploadExpiresAt, resultUrl, thumbnailUrl, durationMs, retryVoucher), including the 24-hour free re-download window and redirect behavior. It also covers edge cases like awaiting_upload not having an uploadUrl. For a tool with this complexity, the description is complete.

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 coverage is 100% with descriptions for jobId and token. The description adds critical context: it explains that the token is the 't' query parameter of the statusUrl and warns that the token cannot be regenerated, which is essential for correct usage and not evident from the schema alone.

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 explicitly states it is a 'Free status lookup for a job accepted by' and lists three specific sibling tools (convert_video, probe_media, extract_frames), making the verb+resource highly specific and clearly distinguishing it from other tools.

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 explains when to use the tool (after job acceptance), what is required (ownership token from statusUrl), and provides critical guidance on storing the token because it cannot be regenerated. It does not explicitly state when not to use it, but the context is clear enough for an agent to decide.

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

leave_feedbackRequest a capability / report a problem (free)AInspect

Tell us what you needed. If ffpipe does not offer the operation you came for - another output format, extracting a frame, a different transformation entirely - say so here: these requests are aggregated and they drive directly what gets built next, so a one-line "I wanted X" is genuinely useful to us. Also the place for bug reports and any other feedback. Free, unauthenticated, and one-way: nothing is returned but an acknowledgement, and no job is created. Include jobId if a specific job prompted this (context only - it is not checked and is not required), and contact if you want a reply. Message limit 2000 characters.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNoWhat this is: "feature_request" for a capability ffpipe does not offer yet, "bug" for something broken, "feedback" for anything else. Defaults to "feedback".
jobIdNoOptional job id this relates to. Context only - ownership is NOT checked and no token is needed.
contactNoOptional. An email or handle to reply at, up to 200 characters. Omit it and the submission stays anonymous.
messageYesWhat you wanted, what went wrong, or what you think. Plain text, 1 to 2000 characters. Be concrete: "needed a single frame as a jpeg at a given timestamp" is worth more to us than "more features".

TDQS

A4.9/5.0
Behavior5/5

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

The annotations provide minimal behavioral hints (none are true), so the description carries the full burden. It explicitly states this is free, unauthenticated, one-way, returns only an acknowledgment, and creates no job. This provides comprehensive transparency about the tool's behavior beyond the 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 densely informative with every sentence adding value: it explains the why, when, and how, plus constraints and side effects. It front-loads the core intent and progressively adds detail, achieving high conciseness without waste at 4 sentences.

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 simplicity (4 params, no output schema, no nesting) and the rich annotations coverage, the description fully explains the tool's purpose, constraints, and outcomes. No gaps remain—the agent can correctly select and invoke it without additional information.

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 value by further contextualizing jobId as 'not checked and not required' and describing the message length limit. It reinforces the parameter meanings from the schema, though it doesn't add entirely new semantics, so 4 is appropriate.

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 clearly states the tool is for requesting capabilities, reporting problems, or giving feedback. It uses specific verbs like 'tell us what you needed' and 'report a problem,' and distinguishes it from sibling tools like convert_video or extract_frames by positioning it as a non-operation feedback mechanism.

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 explicitly explains when to use this tool instead of others: when ffpipe lacks a desired operation, for bug reports, or other feedback. It also tells users to include jobId for context and contact for a reply, providing very clear usage guidance with no ambiguity.

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

probe_mediaA
Read-only
Inspect

Queue an asynchronous media inspection: fetches sourceUrl (or, with upload: true, waits for you to PUT the bytes to the returned uploadUrl) and returns its technical metadata as a downloadable file. In the default json format the result is the full raw analysis plus one added top-level "ffpipe_summary" object: container, duration_s, size_bytes, has_video, has_audio, video_codec, audio_codec, coded_width/height, display_width/height, rotation, fps, is_hdr, audio_channels, audio_sample_rate. USE display_width/display_height as the size the picture actually is - phones store portrait video as a landscape frame plus a rotation flag. A file that cannot be decoded is still a SUCCESS whose result carries the diagnosis. Returns { jobId, status, statusUrl, ... } - poll with get_job_status until finished/error, then download resultUrl within 24 hours. Paid: $0.01 USDC via x402 (base mainnet), or a probe-kind retryVoucher.

ParametersJSON Schema
NameRequiredDescriptionDefault
uploadNoSet true to upload the bytes yourself instead of giving a sourceUrl (exactly one of the two). The paid result then returns status awaiting_upload plus uploadUrl and uploadExpiresAt: HTTP PUT the raw bytes to uploadUrl before the deadline (201 -> queued). You are charged at acceptance; an abandoned upload window errors with no refund, while a pipeline failure after your upload earns a retryVoucher.
summaryNoKeep the normalized ffpipe_summary block (json only). Default true; send false for byte-exact raw output.
sectionsNoWhich sections to report. Default: format, streams, chapters.
sourceUrlNohttps URL of the input media (<= 100 MiB). Fetched from datacenter IP ranges - prefer a presigned URL from storage you control; no IP literals, no localhost/.internal/.local. Provide EXACTLY ONE of sourceUrl or upload.
showFramesNoReport per-FRAME detail. Large: a bounded window is applied for you unless you send readIntervals. Pair with showEntries to keep only the fields you need.
countFramesNoCount frames exactly. Requires decoding the whole file - slow on long sources.
showEntriesNoKeep only the named fields, e.g. "frame=pict_type,pts_time,key_frame" or "format=duration". Section and field names only.
showPacketsNoReport per-PACKET detail. Same bounded-window treatment as showFrames.
countPacketsNoCount packets exactly. Same cost caveat as countFrames.
outputFormatNoFormat of the delivered analysis, default json. Only json carries the ffpipe_summary block; the rest are raw. flat is delivered as .txt.
retryVoucherNoRetry-voucher credential (`uuid.hmac`) from a failed paid job's status - pays for this call instead of x402. Single use, kind-matched.
readIntervalsNoLimit the analysis to a window, e.g. "%+60" (first 60 seconds), "30%+10" (10 seconds from 0:30), "%+#500" (first 500 packets).
selectStreamsNoRestrict the analysis to matching streams, e.g. "v:0" (first video stream) or "a" (all audio).

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds significant behavioral context: async nature (polling required), result lifetime (24 hours), error handling (undecodable files return SUCCESS with diagnosis), payment and voucher mechanics, and upload flow details. This goes well beyond annotations.

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

Conciseness3/5

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

The description is comprehensive but verbose, mixing core purpose, parameter details, pricing, and result format in a dense block. While every sentence adds value, it could be better structured (e.g., separate sections for usage, parameters, output, pricing). It is adequate but not optimally concise.

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 complexity (13 parameters, no output schema), the description covers return format (including the summary object), async polling, error handling, pricing, and parameter nuances (e.g., upload flow, readIntervals syntax). No gaps are apparent; the agent has enough context to invoke the tool 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 description coverage is 100%, so baseline is 3. The description adds value by explaining output structure (ffpipe_summary block), upload process, readIntervals syntax, and the meaning of display_width/height. These clarifications are not present in the schema and aid correct parameter usage.

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 clearly states the tool's purpose: 'Queue an asynchronous media inspection: fetches sourceUrl ... and returns its technical metadata as a downloadable file.' It uses a specific verb ('inspect'), specifies the resource (media via URL or upload), and distinguishes itself from sibling tools like convert_video or extract_frames.

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 implicitly guides when to use this tool (for media inspection to get technical metadata) and provides detailed usage context such as payment ($0.01 via x402 or retryVoucher), async polling via get_job_status, and result expiration. It does not explicitly state when not to use it or name alternatives, but the context is clear enough for an agent.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • Addedextract_frames
    • Addedprobe_media
  2. 1 tool update
    • Addedget_balance
  3. 3 tool updates
    • First observedconvert_video
    • First observedget_job_status
    • First observedleave_feedback

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources