Skip to main content
Glama
jeffmm

gmail-fast-mcp

by jeffmm

trash_email

Remove an unwanted email from your inbox by moving it to the trash using its message ID.

Instructions

Move an email to the trash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
message_idYesID of the email message to trash

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are present, so the description must carry the full behavioral burden. It states only the high-level action and does not disclose whether trashing is reversible, whether special permissions are needed, or how it relates to permanent deletion.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler words. It is efficient, though slightly too terse to cover usage or behavioral context, so it falls short of a perfect score.

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 simple tool with one parameter and an output schema, the description covers the essential call. However, the absence of usage guidance and behavioral detail leaves gaps when an agent must choose between this and batch_trash_emails.

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?

The input schema already describes message_id as 'ID of the email message to trash' with 100% coverage. The description adds no extra meaning about the parameter, so the baseline of 3 applies.

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 clearly states the action ('move') and the resource ('an email') with its destination ('trash'). It is immediately understandable and implicitly distinguishes itself from batch_trash_emails by targeting a single email.

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 provided about when to use this tool versus alternatives. Sibling tools include batch_trash_emails and modify_email, but the description does not mention them or any selection criteria such as 'use this for a single email.'

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