Skip to main content
Glama
get-mcp-ads

Meta Ads by Get MCP Ads

meta get uploaded video

meta_get_uploaded_video
Read-onlyIdempotent

Confirm an uploaded video ID is processed and present in a specified ad account library. Use this check to validate video readiness and membership before using it in Meta ads.

Instructions

Check video processing and membership in the selected account library. If the first page misses the ID, use the video title to narrow the account-scoped lookup. A direct video read alone never proves membership or readiness. Bounded pagination; not_found is not success.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
videoIdYesExact uploaded video ID returned by Meta in this account.
adAccountIdYesOwning advertising account ID. Use the exact ID returned by account discovery; do not substitute a campaign or business ID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYesOriginal tool result: parsed JSON when the text is JSON, otherwise the text or multiple MCP content blocks. Provider fields depend on the selected query.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.1

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, non-destructive behavior. The description adds meaningful behavioral context beyond that: 'direct video read alone never proves membership or readiness' and 'Bounded pagination; not_found is not success.' This gives agents important caveats about interpreting results and pagination, which annotations do not cover.

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?

Four short sentences, each carrying distinct information: purpose, fallback strategy, an important caveat, and pagination/not_found semantics. The main verb and resource are front-loaded, and there is no filler.

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 a read-only tool with an output schema and strong annotations, the description covers the key behavioral subtleties: membership verification, bounded pagination, and not_found semantics. It could be more explicit about the exact meaning of 'video processing' and how pagination is exposed, but it is complete enough for correct invocation.

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?

Input schema descriptions cover both adAccountId and videoId fully, so the baseline is 3. The description does not add substantive parameter-level detail; the reference to 'video title' is not backed by a title parameter in the schema, so it does not improve parameter understanding.

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 opens with a clear directive: 'Check video processing and membership in the selected account library.' This names the resource (uploaded video) and the specific checks (processing, membership), and 'account-scoped lookup' signals its scope. It doesn't name sibling tools like meta_list_ad_videos or meta_get_video_sources, and leaves 'processing' and 'membership' somewhat undefined, so it is clear but not maximally differentiated.

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

Usage Guidelines3/5

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

It gives practical usage hints: use the video title if the first page misses the ID, and remember bounded pagination and 'not_found is not success.' However, it does not explicitly say when to prefer this over sibling tools or when to avoid it, so usage guidance is implied rather than explicit.

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