Skip to main content
Glama
iamahmed28

MCP Email Server (Gmail)

by iamahmed28

send_email

Draft a Gmail message with an optional attachment from the attachments folder, then show the recipient, subject and body for confirmation before dispatch.

Instructions

Send an email via Gmail, optionally attaching a file from the attachments folder (e.g. a resume PDF). Always show the user the drafted subject/body/recipient and get confirmation before calling this.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ccNoOptional CC address
toYesRecipient email address
bodyYesPlain-text email body
subjectYesEmail subject line
attachmentFilenameNoOptional filename of a file inside the attachments/ folder (e.g. 'resume.pdf'). Use list_attachments to see what's available.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses that the send is gated on user confirmation and that attachments come from the attachments/ folder, but it omits the irreversibility of sending, auth/account requirements, and failure behavior.

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, front-loaded with the core action and followed by the confirmation requirement. No filler or redundancy.

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?

For a 5-parameter tool with full schema coverage but no annotations or output schema, the description covers the action, the attachment mechanism, and the confirmation gate. It could do slightly more on auth and irreversibility but is largely sufficient.

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 every parameter is already documented in the schema. The description restates the attachment folder and points at list_attachments, adding little beyond what the schema already provides.

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 (Send) and resource (an email via Gmail), with the optional attachment capability called out explicitly. It also names the attachments folder in a way that connects to the sibling list_attachments, letting an agent distinguish it from that tool.

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?

Gives an explicit pre-call workflow: show the drafted subject/body/recipient and get confirmation first. That is strong actionable guidance, but it does not state when not to use the tool or what the alternatives are.

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

Deploy Server

Other Tools