Skip to main content
Glama
sweetrb

apple-mail-mcp

by sweetrb

save-attachment

Save an email attachment to a local folder by providing the message ID, attachment name, and target directory. Ensures the path is within allowed roots and returns the saved file location.

Instructions

Use when: writing one of a message's attachments to disk, by message id and attachmentName, into the savePath directory (saved as savePath/attachmentName). Returns: a confirmation of the saved file path. Do not use when: you don't know the attachment name (use list-attachments first) or want the bytes inline rather than on disk (use fetch-attachment). Safety: writes a file to disk — savePath must be a directory inside the configured allowed roots, and attachmentName may not contain path separators or '..'; calls outside those constraints are rejected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
savePathYes
attachmentNameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
savedPathNo
attachmentNameNo
Behavior4/5

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

With no annotations present, the description transparently discloses that the tool writes a file to disk (destructive side effect), enforces path safety constraints on savePath and attachmentName, and returns a confirmation of the saved path. It does not mention overwrite behavior or permissions, but the disclosed constraints substantially cover the behavioral profile.

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 tightly organized into labeled sections (Use when, Returns, Do not use when, Safety). Each sentence delivers distinct information without redundancy, and the structure front-loads the primary use case.

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?

Given the tool's simplicity and the presence of an output schema, the description covers purpose, usage guidelines, return behavior, and safety constraints. Minor gaps such as overwrite semantics prevent a perfect score, but the description is highly usable for an agent.

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?

The schema provides no property descriptions (0% coverage). The description compensates by defining all three parameters: id as message id, attachmentName as the attachment name, savePath as the destination directory, and the resulting file path as savePath/attachmentName. It also adds validation rules for attachmentName.

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?

The description explicitly states the tool's action: writing a message attachment to disk using message id and attachmentName into savePath. It names the exact output file path format and distinguishes from sibling tools by mentioning fetch-attachment for inline bytes and list-attachments for unknown names.

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?

The description provides explicit 'Use when' and 'Do not use when' guidance, naming alternatives (list-attachments, fetch-attachment). This clearly instructs the agent on appropriate conditions and exclusions.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sweetrb/apple-mail-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server