Skip to main content
Glama
Kinolian1107

phison-mail-mcp

by Kinolian1107

markAsRead

Mark a specific email as read using its UID, updating the read-status flag on the mail server so messages no longer appear unread.

Instructions

Mark a specific email as read using its UID. Updates the read status flag on the email server.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYes
folderNoINBOX

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.9

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It states the server-side flag update, but omits permissions, reversibility, idempotency, error handling, and what happens if the UID is invalid or missing.

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 tight sentences, front-loaded with the core action and effect. Every sentence earns its place with no redundancy.

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?

With no annotations, no output schema, and 0% schema description coverage, the description is too thin for a mutation tool. It should at least explain the folder parameter, likely side effects, and failure behavior.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It mentions uid but omits the optional folder parameter, its default of INBOX, and any clarification of what UID means or how folder affects the 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?

States a specific verb+resource: mark a specific email as read using its UID. The singular 'specific email' implicitly distinguishes it from markMultipleAsRead, but no sibling alternative is named explicitly, preventing a 5.

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 when-to-use or when-not-to-use guidance. It does not mention alternatives like markAsUnread or markMultipleAsRead, nor does it explain folder selection or prerequisites.

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