Skip to main content
Glama

get_mail_account

Read-only

Retrieve mail account details by ID, with the password masked to protect sensitive data.

Instructions

Get one mail account by ID (password masked).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.0

TDQS

A4.3/5.0
Behavior4/5

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

The readOnlyHint annotation already signals a safe read operation. The description adds meaningful behavioral context by explicitly noting that the password is masked, which tells the agent the returned data is sanitized. This goes beyond what the annotation provides.

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 short sentence with no filler. The core purpose is front-loaded, and the password-masking note is appended cleanly without bloating the definition.

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

Completeness5/5

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

For a one-parameter, read-only get-by-ID tool, the description is complete: it names the resource, the selection criterion, and the key data trait (masked password). No output schema exists, but the description gives the agent enough to invoke the tool correctly and set expectations about the returned account data.

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?

Schema coverage is 0%, so the description must compensate for the lone 'id' parameter. The phrase 'by ID' clarifies that the numeric id parameter identifies the mail account, but it adds only marginal meaning beyond the parameter's property name. It is sufficient for such a simple single-parameter tool, but not richer than the schema already implies.

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 states a specific verb ('Get'), a specific resource ('mail account'), and a precise scope ('one ... by ID'), clearly distinguishing it from list_mail_accounts and other mail-account operations. The parenthetical 'password masked' adds a useful distinguishing detail.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Get one mail account by ID' makes the invocation context clear: use this when you already have the account ID and need a single account, rather than listing all accounts. It does not explicitly name alternatives like list_mail_accounts, but the scope is unambiguous enough that an agent can decide correctly.

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

Deploy Server

Other Tools