Skip to main content
Glama

delete_contact

Delete an SMS Center contact using its contact ID to keep your contact list accurate and current.

Instructions

Delete an SMS Center contact.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contact_idYesContact id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states 'Delete an SMS Center contact' without mentioning whether deletion is permanent, whether it cascades to contact lists, what happens if the contact does not exist, or any authorization requirements. For a destructive operation, this is a significant gap.

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 a single sentence with no redundant words. It is front-loaded with the action and resource, making it easy to scan. There is no unnecessary elaboration, which is commendable for a simple tool.

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 the lack of annotations and output schema, the description is insufficiently complete. It does not explain the result of the operation, error handling, idempotency, or any side effects. For a mutation tool, this leaves the agent without critical context needed to use it safely and effectively.

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?

The schema description coverage is 100%, as the single parameter contact_id has a description ('Contact id'). The tool description adds no additional meaning beyond the schema, so the baseline score of 3 is appropriate. The agent can rely on the schema for parameter meaning.

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 states the verb 'Delete' and the resource 'SMS Center contact', which clearly indicates the action and target. It distinguishes from sibling tools like delete_contact_list or delete_did by specifying the contact resource, though it adds little beyond the name itself.

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?

No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, scenarios where deletion might be unsafe, or differences from related tools such as delete_contact_list. The agent must infer usage solely from the tool name and schema.

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