Skip to main content
Glama

send_media

Send local files or URLs as WhatsApp media, choosing from image, video, document, audio, voice note, or sticker. Includes optional caption and requires confirmation.

Instructions

Envia um arquivo local ou URL. Exige confirmação em duas etapas, como send_text.

tipo: image, video, document, audio, ptt (áudio de voz) ou sticker.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chatYes
tipoNodocument
arquivoYes
legendaNo
instanceNo
confirmarNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden and does disclose a material behavioral trait: two-step confirmation. However, it does not explain the mechanics of that confirmation, side effects of sending, or what the confirmar parameter actually controls.

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 text is compact, front-loads the core action, and adds a useful list of media types without redundant filler. It earns its place, though the tipo list is telegraphic and could be formatted slightly more cleanly.

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?

Given six parameters, no annotations, and an output schema, the description covers only the operation and media kinds. It omits the required chat target, confirmation semantics, and most parameter behaviors, so an agent cannot reliably construct a correct call.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate, but it only covers two parameters: arquivo (local or URL) and tipo (enumerated values). The required chat parameter, legenda, instance, and confirmar are left unexplained.

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 states a specific action ('Envia um arquivo local ou URL') and identifies the resource scope as media, which is distinct from sibling send_text. It also enumerates the accepted media categories, making the tool's purpose unambiguous.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives like send_text, get_media, or transcribe_file. The reference to send_text is only about the confirmation behavior, not a usage condition or exclusion.

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