Skip to main content
Glama

gmail_send

Send an email with recipient, subject, and plain text body, optionally selecting the Gmail account to use.

Instructions

Send an email.

Args: to: Recipient email address. subject: Email subject line. body: Plain text email body. account: Email address of the account to use. Omit for default account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYes
bodyYes
accountNo
subjectYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries the burden of disclosing side effects. It states the body is plain text and the account is optional, but it does not mention auth requirements, delivery/error behavior, or response format, and it only implies the mutating nature of send.

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 short action sentence followed by a compact args list. Every line adds information and there is no filler.

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?

For a straightforward send operation, the essential invocation data is present. However, with no output schema or annotations, the description omits success/error expectations and any prerequisite/alternative routing, leaving an agent to guess at operational context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although schema description coverage is 0%, the description gives every parameter a meaningful one-liner: recipient address, subject line, plain text body, and account behavior with default. This is exactly the compensation needed.

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 opens with 'Send an email,' which names a specific action and resource and clearly separates this mutation tool from the read/list gmail siblings. It does not explicitly name alternatives, so it misses the top mark for sibling differentiation.

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 given for when to choose gmail_send over gmail_get_message, gmail_list_unread, or calendar tools; the only contextual note is to omit account for the default account. The agent must infer the appropriate use case from the name and sibling names.

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