Skip to main content
Glama

machine-inbox

reply_to_message

Send an included plain-text reply to the authenticated sender of an inbound message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
tokenNoMailbox bearer token (mi_live_...) returned when the inbox was purchased. Optional when the MCP request itself carries Authorization: Bearer.
inbox_idYesInbox UUID.
message_idYes
idempotency_keyYesNew unique key for this reply; reuse only to retry the identical reply.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries full burden. It states that the reply is 'plain-text' and sent to the 'authenticated sender', which implies authorization context. However, it does not disclose side effects (e.g., does it mark the message as replied? Is the reply visible elsewhere?), potential rate limits, or whether the operation is destructive. It is clear but not comprehensive.

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 a single, compact sentence that front-loads the action and key constraints. Every word serves a purpose, and there is no redundancy. It could be slightly more concise by removing 'included' (the inclusion is implied), but overall it is well above average.

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 tool has 5 parameters (60% schema coverage), no output schema, and no annotations. The description is functional but lean. It explains the core action but omits important contextual details like return value (is there a confirmation ID?), error scenarios (e.g., invalid inbox_id), or idempotency behavior beyond the schema hint. For a tool with moderate complexity, it meets a minimum viable level but leaves gaps.

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 description coverage is 60%, with fields like `text`, `token`, `inbox_id`, and `idempotency_key` having descriptions in the schema. The description adds little beyond, only mentioning 'plain-text' for the reply content. For `message_id`, the description does not help clarify what this refers to, and the schema lacks a description for it. The overall added value from the description is marginal.

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 uses a specific verb ('Send') and identifies the resource ('plain-text reply' directed at the 'authenticated sender of an inbound message'). This clearly distinguishes it from sibling tools like create_inbox or list_messages, as it is the only tool focused on sending a reply to a message sender.

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 implicitly states when to use the tool (when you need to reply to an inbound message), but it provides no explicit guidance on when not to use it, nor does it mention alternatives. Sibling tool names like get_message or list_messages hint at possible related actions, but no direct comparison or exclusion is given.

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 or action: create vs. delete vs. get for inboxes and webhooks, list vs. get for messages, plus specific actions like extracting verification codes, replying, and retrieving service info. There is no functional overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_inbox, get_verification_code, set_webhook). The naming is predictable and uniform across the entire surface.

Tool Count5/5

With 11 tools covering inbox lifecycle (create, read, delete), message retrieval and actions (list, get, reply, verification code), webhook management (set, get, delete), and service information, the count is well-scoped for a temporary email service.

Completeness5/5

The tool surface provides full CRUD for inboxes, message retrieval and reply, webhook management, and specialized operations like verification code extraction. No obvious gaps exist for the stated purpose of managing disposable inboxes.

Resources