Skip to main content
Glama
fbossiere

Proton Safe MCP

by fbossiere

List Proton folders

list_folders
Read-onlyIdempotent

Retrieve exact folder names exposed by Proton Bridge, including system folders and user labels, so you can supply correct arguments to other mailbox tools.

Instructions

List the folder names the locally running Proton Bridge exposes, including Proton system folders and user labels. Call it before passing any folder argument to another tool: names are account-specific, may be localised, and must match exactly. It returns names only, with no counts and no hierarchy: use mailbox_status for INBOX counts and list_messages to see what a folder contains. It fails with a tool error when Bridge is unreachable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already cover safety (readOnly, idempotent, non-destructive). The description adds valuable behavior: it returns names only (no counts/hierarchy), fails with a tool error when Bridge is unreachable, and names are localised. This is meaningful beyond the annotations.

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?

Three sentences with no filler. The primary action is front-loaded, followed by crucial usage guidance and a failure condition. Every sentence earns its place.

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 no-parameter read-only tool with a full output schema and robust annotations, the description covers return scope, usage prerequisite, failure mode, and localisation nuance. Nothing an agent needs to call it correctly 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?

The tool has zero parameters, so the schema trivially covers everything. The description correctly adds no parameter-specific info because none is needed; it instead clarifies output semantics, which is appropriate for a no-parameter tool.

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 and resource: 'List the folder names the locally running Proton Bridge exposes'. It also differentiates from siblings by explicitly noting it returns names only and pointing to mailbox_status and list_messages for other concerns.

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?

Explicitly instructs to call this tool before passing any folder argument to another tool, explains why (account-specific, localised, exact match), and names the correct alternatives for counts and content. No ambiguity about when to use it.

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