Skip to main content
Glama
atesahmet0

metu-webmail-mcp

by atesahmet0

reply_email

Reply to an existing METU Webmail email, automatically adding Re: prefix, In-Reply-To/References headers, recipients, and quoted original text.

Instructions

Reply to an existing email message.

Automatically handles 'Re:' subject prefix, In-Reply-To and References headers, recipient selection, and quoting the previous message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folderNoThe folder where the original email is located (default: 'INBOX').INBOX
body_htmlNoOptional HTML body for the reply.
body_textYesYour reply message text.
reply_allNoIf True, replies to all original recipients and CCs (excluding yourself). Default is False.
message_idYesThe ID of the email to reply to.
attachmentsNoOptional local file paths to attach.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesStatus description message
successYesWhether sending succeeded
message_idNoGenerated Message-ID
recipientsNoList of recipient addresses

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does disclose meaningful automatic behavior: 'Re:' prefix handling, In-Reply-To/References headers, recipient selection, and quoting the previous message. It stops short of stating that the reply is actually sent, any auth requirements, or irreversibility, which keeps it from a 5.

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, zero waste, with the core action front-loaded and the automatic-handling details following. Every clause earns its place.

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?

Output schema exists so return values need not be explained. For a mutation tool with no annotations, the description covers the reply-construction behavior well, but omits whether the message is dispatched immediately and any permission requirements, leaving a small gap.

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 all six parameters (including folder default, reply_all, attachments) are already documented in the schema. The description's mention of 'recipient selection' loosely relates to reply_all but adds no syntax or format detail beyond the schema, so the baseline of 3 applies.

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?

States a specific verb (reply) and resource (existing email message), which clearly differentiates it from send_email and forward_email in the sibling list. Missing an explicit sibling contrast, but the action is unambiguous.

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?

Usage is implied by 'reply to an existing email message' — an agent can infer this is for responding to a received message rather than composing or forwarding one. However, no explicit when-to-use guidance or comparison to send_email/forward_email is provided.

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