Skip to main content
Glama

remind_send_message

Destructive

Send a message to a chat stream or class, requiring user confirmation before delivery. Check permissions.canSend first and use a confirmation prompt or confirmToken.

Instructions

Send a message to a chat stream or class. Delivers to real people and CANNOT be unsent. Nothing is sent until confirmed; the preview shows the exact payload. Asks the user to confirm first: a confirmation prompt where the client supports one; otherwise the first call returns a preview and a confirmToken, and only a repeat call with that token proceeds (see MCP_CONFIRM_MODE). Check permissions.canSend on the target first (remind_list_chats).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesMessage text.
urgentNoSend as an urgent message.
confirmTokenNoONLY for the two-step confirmation fallback (a client without MCP elicitation). The confirmToken from this same tool's phase-1 "confirmation-required" response, passed back ONLY after the user has seen that preview and explicitly approved it in chat — never on the first call, never invented, never reused. Call again with the same arguments. Ignored when the client supports elicitation.
recipient_typeNo`chat` for a conversation stream, `group` for a whole class.chat
recipient_uuidYesChat stream uuid, or class uuid.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.1

TDQS

A4.7/5.0
Behavior5/5

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

Goes well beyond the destructiveHint=true annotation by disclosing that the action CANNOT be unsent, that nothing is sent until confirmed, that a preview shows the exact payload, and how the two-step confirmToken fallback works. This is exactly the kind of irreversibility and auth/permission context an agent needs.

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?

Front-loads the action and the irreversibility warning, then layers the confirmation mechanics and the permission prerequisite. Every sentence carries functional information with no filler.

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

Completeness5/5

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

For a destructive send tool with no output schema, the description covers the confirmation protocol, the non-reversibility, the token fallback, and the pre-flight permission check. Nothing an agent needs to invoke this safely is missing.

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 100%, so the schema already documents body, urgent, recipient_type, recipient_uuid and the confirmToken contract in detail. The description adds the permission pre-check context for the recipient but no additional parameter syntax or semantics beyond the schema, so the baseline 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?

States a specific verb and resource ('Send a message to a chat stream or class') plus the delivery target distinction. It effectively separates itself from read-oriented siblings such as remind_get_messages by making clear this is an outbound send to real people.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit prerequisites and sequencing: check `permissions.canSend` on the target first (via remind_list_chats), then confirm before sending. It also names the fallback path (confirmToken) and the MCP_CONFIRM_MODE condition that selects between confirmation mechanisms.

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