Skip to main content
Glama

move_email

Move emails to different mailboxes in macOS Mail. Organize your inbox by transferring messages to specific folders with this Pilot MCP tool.

Instructions

Move email to a different mailbox

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • server.js:82-86 (registration)
    Tool registration loop where 'move_email' is registered with the MCP server using server.tool(). All 33 tools are registered identically with empty schemas and stub handlers.
    for (const [name, desc] of TOOLS) {
      server.tool(name, desc, {}, async () => ({
        content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }],
      }));
    }
  • server.js:19-19 (handler)
    Definition of 'move_email' in the TOOLS array with its description. The actual handler is the generic stub function at lines 83-85 that returns a placeholder message.
    ["move_email", "Move email to a different mailbox"],
  • Empty schema object '{}' passed as the third argument to server.tool(). This stub does not define actual input validation schemas.
    server.tool(name, desc, {}, async () => ({
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure but fails to state that this is a destructive operation (removes from source), whether it preserves email metadata, or error conditions like invalid destination mailboxes.

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 single six-word sentence with no redundant or filler content. It is maximally efficient and front-loaded with the critical action and target.

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

Completeness2/5

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

For a mutation tool with no annotations, no output schema, and zero documented parameters (likely a schema error), the description inadequately covers necessary context. It omits safety warnings about data loss, success/failure indicators, and whether the operation is reversible.

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

Parameters4/5

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

The input schema contains zero parameters (empty properties object), which triggers the baseline score of 4 per evaluation rules. The description cannot add parameter semantics where none exist in the schema, though this schema emptiness is itself problematic for a move operation.

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 uses a specific verb ('move') and identifies the target resource ('different mailbox'), clarifying the scope beyond just the tool name. However, it does not distinguish from similar operations like copying or forwarding emails available in sibling tools.

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?

The description provides no guidance on when to use this tool versus alternatives (e.g., copying vs. moving), nor does it mention prerequisites like requiring the destination mailbox to exist or permissions needed to modify the source location.

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/lanchuske/local-mcp-releases'

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