Skip to main content
Glama

create_opt_out_entry

Add a recipient phone number to an opt-out list to suppress them from receiving future SMS messages.

Instructions

Manually suppress a recipient on an opt-out list. Requires phone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesOpt-out list UUID
notesNoOptional notes
phoneYesRecipient phone to suppress

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?

With no annotations provided, the description must disclose behavioral traits. It implies a mutation (creating an opt-out entry) but does not state side effects, idempotency, whether existing entries are checked, or reversibility. It only mentions 'Requires phone' as a constraint.

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 two sentences, front-loaded with the purpose and a key constraint. There is no wasted wording; every word contributes to understanding the core function.

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?

As a mutation tool with no annotations and no output schema, the description is too minimal. It lacks details about prerequisites (e.g., list must exist), phone format, success/error behavior, or consequences, leaving significant gaps for an agent.

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 coverage is 100%, so each parameter is already described. The description adds only 'Requires phone', which reiterates a required field without adding new meaning. No extra context about uuid or notes is provided, so the baseline of 3 applies.

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 verb 'suppress' and the resource 'recipient on an opt-out list', distinguishing it from sibling tools like create_opt_out_list (creates lists) and check_opt_out (checks status). It is specific and actionable.

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?

The description offers no guidance on when to use this tool versus alternatives like list_opt_out_entries or check_opt_out. It does not mention exclusions or contexts that favor other tools.

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