Skip to main content
Glama
estapel-ai

mcp-facebook-ads

by estapel-ai

upload_ad_video

Upload a local video file to a Facebook ad account for use in ads. Provide the file path on the machine running the SDK.

Instructions

Upload a local video file to the ad account.

Let op: video_file_path moet op deze machine bestaan, omdat de SDK hier direct uploadt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
descriptionNo
ad_account_idNo
video_file_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses the local-file precondition but says nothing about permissions, upload size/duration limits, processing latency, or what happens on repeated uploads of the same file.

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?

Two sentences, front-loaded with the core action and then the one critical constraint. No filler.

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

Completeness2/5

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

An output schema exists, so return values need not be explained. But with zero annotations and 0% schema coverage, a mutation/upload tool with a required filesystem precondition should do much more: auth requirements, size limits, and the meaning of the three optional params are all absent.

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 0% across 4 parameters. The description adds meaning only for video_file_path (must exist locally), leaving title, description, and ad_account_id entirely undocumented in both schema and description. It partially compensates but leaves a real gap.

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?

States a clear verb+resource ('Upload a local video file') and the target ('to the ad account'), which distinguishes it from sibling upload_ad_image. It does not name or differentiate from create_ad_video_creative, which also produces a video asset, so it falls short of a 5.

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?

The note that the file must exist on this machine implies a usage precondition but no explicit when-to-use or when-not-to-use guidance compared to alternatives like create_ad_video_creative.

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