Skip to main content
Glama

bulk_send_sms

Send a single SMS message to many recipients at once. Use inline phone numbers or a saved contact list, with synchronous delivery for up to 500 and asynchronous for up to 50,000 recipients.

Instructions

Bulk-send one SMS body to many recipients via POST /api/v2/sms/bulk-send. Provide from + text and either to[] or list_uuid. Sync ≤500; async 501–50k returns job_uuid.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoInline recipients (up to 20000)
fromYesApproved sender
textYesMessage body
list_uuidNoSaved contact list UUID
opt_out_listNoOptional opt-out list UUID
idempotency_keyNoOptional Idempotency-Key header

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

No annotations exist, so description carries the full burden. It discloses the sync/async behavior and job_uuid for async, but omits side effects like cost, irreversibility, or that it actually sends messages (though 'send' implies this). Adequate but not rich.

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, zero waste. Action, required fields, either/or condition, and sync/async thresholds are all front-loaded. Every word earns its place.

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 6-param tool with no output schema, it covers the essentials: endpoint, required fields, either/or constraint, and async behavior. It doesn't explain sync output format or error conditions, but the core calling logic is fully described.

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 baseline is 3. The description adds a critical constraint not in the schema: the either/or requirement of to[] or list_uuid, clarifying that from+text alone is insufficient. This is valuable beyond 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?

States a specific verb+resource (bulk-send SMS to many recipients) and includes the HTTP endpoint. Clearly distinguishes from single-send sibling tools like send_sms and schedule_sms by the word 'bulk'.

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?

Gives explicit usage conditions: requires from+text and either to[] or list_uuid, plus sync/async thresholds (≤500 vs 501–50k). Does not explicitly contrast with send_sms for single sends, but the threshold logic provides clear guidance.

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