Skip to main content
Glama

simpletexting

Send message

simpletexting_send_message
Destructive

SENDS A REAL SMS or MMS to a recipient — this MODIFIES live data and consumes message credits. Provide only the optional fields you need. SimpleTexting REST: POST /messages with JSON body {contactPhone, text, accountPhone?, mode?, subject?, fallbackText?, mediaItems?}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoSend mode: AUTO | SMS | MMS | MMS_PREFERRED.
textYesMessage body to send.
subjectNoMMS subject line.
mediaItemsNoMedia URLs or media ids to attach (makes it an MMS).
accountPhoneNoSending account phone number — omit to use the account default.
contactPhoneYesRecipient phone number (E.164 or national format).
fallbackTextNoFallback text if MMS cannot be delivered.

TDQS

A3.8/5.0
Behavior4/5

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

The description explicitly states this tool MODIFIES live data and consumes message credits, adding clear behavioral context beyond the destructiveHint annotation. It accurately informs the agent that this is a real-world action with cost implications.

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 description is two sentences long with no wasted words. The first sentence is strong and front-loaded. The second sentence packs REST details cleanly, though could be slightly restructured for readability.

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

Completeness3/5

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

The description lacks information about the return value or success/failure behavior. Since there is no output schema, the agent is left guessing the response format. For a mutation tool with credit consumption, explaining the response would improve completeness.

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% with detailed descriptions for each parameter. The description lists the parameters in REST format but does not add new semantic information beyond what the schema already provides. It reinforces optionality (?) but adds marginal value.

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 starts with 'SENDS A REAL SMS or MMS' which is a specific verb+resource combination. The title 'Send message' and context clearly distinguish this from sibling tools like evaluate_message or get_message.

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 description advises to 'Provide only the optional fields you need' but does not explicitly state when to use this tool versus alternatives like evaluate_message or when not to use it. Usage context is implied but not contrasted with siblings.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: evaluate vs send, get vs list for campaigns/contacts/media/messages, and update for contacts. No overlapping purposes.

Naming Consistency5/5

All tools follow a consistent 'simpletexting_verb_noun' pattern with lowercase and underscores. Verbs are imperative (evaluate, get, list, send, update) and nouns use singular for get and plural for list, as expected.

Tool Count5/5

11 tools is well-scoped for a messaging API, covering the core operations without being excessive. Each tool serves a clear purpose and earns its place.

Completeness2/5

Significant gaps exist: no create or delete for contacts, campaigns, or media; no delete for messages. The surface is read-heavy with only send and update as write operations, limiting full lifecycle management.