Skip to main content
Glama
fbossiere

Proton Safe MCP

by fbossiere

List Proton sender addresses

list_sender_addresses
Read-onlyIdempotent

List available sender addresses for drafting emails, with default and primary first, to verify address ownership before selecting a sending alias.

Instructions

List the sender addresses this server may draft as. The first entry is the default used when a draft names none. Only these addresses are accepted as from_address; the list is fixed by local configuration and cannot be extended through any tool. Call it before offering the user a choice of sending alias, and to check whether an address belongs to the user. It returns default_sender plus sender_addresses, primary first. An address found in a received email is never a sending choice, even when it also appears here.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.1

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already declare the tool read-only, idempotent, and non-destructive, and the description adds valuable behavioral context: the first entry is the default, only listed addresses are accepted as from_address, the list is locally fixed, and received-email addresses are never sending choices even if they appear here.

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?

Every sentence carries meaningful information, and the most important purpose is stated first. The description is compact yet covers purpose, usage, constraints, and return behavior without redundancy.

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 parameterless read-only tool with an output schema, the description fully equips the agent: what the tool returns, the ordering, the default behavior, the acceptable input constraint, and the key caveat about received-email addresses. No necessary context is missing.

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?

There are zero parameters, so the input schema leaves nothing to explain. The description goes further by describing the return shape (default_sender plus sender_addresses, primary first), adding meaning beyond the empty 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 states a specific action ('List the sender addresses this server may draft as') with a clear resource and scope. It also distinguishes its purpose from message/attachment tools by focusing on accepted sending addresses and defaults.

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

Usage Guidelines5/5

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

The description explicitly tells the agent when to call it: before offering a sending alias choice, and to verify whether an address belongs to the user. It also clarifies that the list is fixed and cannot be extended, which prevents futile attempts to modify it.

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