Skip to main content
Glama
MadLlama25

Fastmail MCP Server

by MadLlama25

get_mailbox_stats

Retrieve mailbox statistics like unread count and total emails. Specify a mailbox ID or get stats for all mailboxes.

Instructions

Get statistics for a mailbox (unread count, total emails, etc.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mailboxIdNoID of the mailbox (optional, defaults to all mailboxes)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior2/5

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

The description discloses the purpose but lacks any behavioral details beyond that. Since annotations are absent, the description should mention that this is a read operation, potential permissions required, or what happens if the mailbox ID is invalid. No such information is provided.

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 concise sentence with no redundant words. It efficiently communicates the tool's core function.

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?

Given the tool's simplicity (1 optional param, no output schema), the description is minimally adequate but could be more complete by detailing the return format or providing an example. Without an output schema, more context about the returned object structure would improve completeness.

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 covers 100% of parameter descriptions (defaults to all mailboxes). The tool description adds meaning by specifying what kind of statistics are returned ('unread count, total emails, etc.'), which is not in the schema.

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 verb 'Get', the resource 'mailbox statistics', and examples of statistics ('unread count, total emails, etc.'). It distinguishes from sibling tools like list_mailboxes which list mailbox metadata.

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?

The description implies the tool is used to retrieve mailbox statistics, but provides no explicit when-to-use guidance or alternatives. The context of when to choose get_mailbox_stats over other tools like list_mailboxes or get_account_summary is left implicit.

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