Skip to main content
Glama
wraps-team

Wraps Email for Amazon SES

by wraps-team

send_email

Destructive

Send transactional email through your AWS SES account with a verified sender address. Supports HTML or plain text body and delivery to one recipient or up to 1000 addresses.

Instructions

Send a transactional email via your AWS SES account. Requires WRAPS_WRITE_ENABLED=true. The from address must be a verified Wraps domain. The to field accepts a single address or an array of addresses.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesRecipient address, or an array of up to 1000 addresses.
fromNoSender address. Must be a verified SES identity in this account. Defaults to WRAPS_FROM_EMAIL.
htmlNoHTML body. Provide `html`, `text`, or both; at least one is required.
textNoPlain-text body. Provide `html`, `text`, or both; at least one is required.
subjectYesSubject line.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesRecipients the message was accepted for.
fromYes
messageIdYesSES message id; pass to get_email_event_log for delivery events.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.1

TDQS

A4/5.0
Behavior3/5

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

Annotations already mark this as destructive and non-idempotent, so the mutation nature is disclosed. The description adds configuration prerequisites (WRAPS_WRITE_ENABLED, verified domain) but does not mention side effects like queuing, rate limits, or error responses. Acceptable but not rich.

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?

Two sentences: first states purpose and key constraint, second covers address verification and array acceptance. Every word earns its place; no redundant phrasing.

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

Completeness4/5

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

Prerequisites and address constraints are covered. An output schema exists, so return format is handled. Missing rate-limit or quota guidance is minor for a send operation. Overall adequate for an agent to invoke correctly.

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 covers all 5 parameters with descriptions (100% coverage). The tool description adds only the verification requirement for 'from' and clarifies the array option for 'to', which is already in the schema. Minimal added value beyond schema.

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?

Description states a specific action ('Send a transactional email'), the resource ('your AWS SES account'), and key constraints (verified domain, array support). It clearly differentiates from siblings like list_recent_sends and get_email_event_log, which are read/verification tools. No ambiguity.

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

Usage Guidelines4/5

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

Provides explicit prerequisites: WRAPS_WRITE_ENABLED=true and a verified Wraps domain for the from address. While it doesn't name alternatives or state when not to use, the purpose is self-evident versus sibling tools, and the conditions are actionable for the agent.

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