Skip to main content
Glama

Create mailbox

mailboxes.create

Create a new temporary mailbox. The domain defaults to the tenant's default domain; the owner is always the API key's owner.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNoRecovery tag, required when recoverable is true.
domainNoMailbox domain. Defaults to the tenant default domain (e.g. minutemail.cc).
expiresInNoLifetime in minutes, 1-60. Omit for the service default TTL.
recoverableNoSet true to keep the mailbox recoverable after expiry (requires tag).
noExpirationNoSet true for a permanent mailbox (mutually exclusive with expiresIn).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesMailbox ID
aliasNoLocal part of the address
ownerNoOwner (tenant) ID
domainNoMailbox domain
addressYesFull mailbox address
createdAtNoCreation timestamp (RFC 3339)
expiresAtNoExpiry timestamp (RFC 3339); null when permanent
permanentNoWhether the mailbox never expires
recoverableNoWhether the mailbox can be recovered after expiry
messageCountNoNumber of mails in the mailbox

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already establish this as a non-read-only, non-idempotent, non-destructive write, so the description's job is to add operational context beyond that. It does: the domain defaults to the tenant default domain and ownership is always bound to the API key's owner — two facts an agent needs before calling. It stops short of richer lifecycle behavior, but expiry/recovery mechanics are partially covered by the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler; the purpose is front-loaded and the second sentence compresses two important behavioral defaults efficiently. The only inefficiency is that the domain-default fact repeats the schema's parameter description, which keeps it from a 5.

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

Completeness4/5

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

With an output schema present and 100% parameter coverage, the description only needs to supply tool-level linkage, which it does: purpose, default domain, and ownership. The 'temporary' label slightly undersells the tool since noExpiration can create permanent mailboxes, but the schema exposes that override, so 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.

Parameters3/5

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

Schema description coverage is 100%, so all five parameters are already documented in the input schema, landing this at the baseline of 3. The description's domain-default fact duplicates the schema's 'Defaults to the tenant default domain,' adding no new parameter-level meaning.

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?

The description opens with a specific verb+resource pair ('Create a new temporary mailbox'), and the 'temporary' qualifier sharpens default behavior beyond the plain title. Sibling tools are all different operations (delete, get, list, delete_bulk), so confusion risk is low, but the description doesn't explicitly name alternatives, keeping it at a 4 rather than 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 Guidelines3/5

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

The core action statement implies when to use the tool (when a new mailbox is needed), and the domain/owner defaults subtly inform call decisions. However, it names no alternative tools and provides no explicit when-to-use or when-not-to-use guidance, so usage context is only implied.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation5/5

Every tool is scoped to a specific resource and action, and the dot-separated prefixes keep domains, mailboxes, mails, attachments, identities, OAuth clients, and team entities clearly distinct. Even similar actions like archived.delete vs mailboxes.delete or attachments.add vs mails.inject are unambiguous from context.

Naming Consistency5/5

All tools follow the same resource.action pattern with lowercase dot-separated names and consistent plural resource prefixes. Multiword actions like delete_bulk and rotate_secret are consistently snake_cased, so the convention is predictable across all 40 tools.

Tool Count2/5

At 40 tools, the surface is quite large and exceeds the 25+ threshold where tool sets become heavy for an agent to navigate. The grouping is coherent, but this many discrete operations would have been easier to manage with fewer, more consolidated endpoints.

Completeness4/5

The API covers the main lifecycle operations for mailboxes, mails, attachments, archived items, domains, identities, OAuth clients, and team members, with no dead ends in core flows. Minor gaps exist, such as no domains.get, no team.invitations.get, and no mailbox update/expiry operation, but these are workable via list operations.

Resources