Skip to main content
Glama

@multimail/mcp-server

Your agent doesn't have email yet because nobody trusts it with email yet. MultiMail fixes that. A real email address with a trust ladder from read-only to fully autonomous, cryptographic identity on every message, and per-recipient sending controls.

Quick start

{
  "mcpServers": {
    "multimail": {
      "type": "url",
      "url": "https://mcp.multimail.dev/mcp"
    }
  }
}

Remote server. No install. Authenticates via OAuth on first connect.

Works with Claude.ai, Claude Desktop, Claude Code, Cursor, Windsurf, Copilot (VS Code), ChatGPT Desktop, and any MCP client that supports remote servers.

Alternative: local stdio server

{
  "mcpServers": {
    "multimail": {
      "command": "npx",
      "args": ["-y", "@multimail/mcp-server"],
      "env": {
        "MULTIMAIL_API_KEY": "mm_live_...",
        "MULTIMAIL_MAILBOX_ID": "01KJ1NHN8J..."
      }
    }
  }
}

Get a key at multimail.dev. Or run without one to create an account interactively.

Config file locations

Client

Config file

Claude Code

~/.claude/.mcp.json

Claude Desktop

claude_desktop_config.json

Cursor

.cursor/mcp.json in your project

Windsurf

~/.codeium/windsurf/mcp_config.json

Copilot (VS Code)

.vscode/mcp.json in your project

OpenCode

mcp.json in your project

ChatGPT Desktop

Settings > MCP Servers

Related MCP server: MCP Email Server

Trust ladder

Every mailbox has an oversight mode. Start restrictive, graduate as the agent earns trust.

Mode

Behavior

read_only

Agent reads email. All sends blocked.

gated_all

Every action requires human approval.

gated_send

Outbound held for approval. Inbound immediate. (default)

monitored

Agent sends freely. Copies go to oversight address.

autonomous

Full send/receive. No gates.

Agents request upgrades via the API. The operator approves with a one-time code. Downgrades need no approval. The agent can always restrict itself.

The gated approval flow is formally verified in Lean 4. No email reaches delivery without passing through operator approval, for every possible code path.

Per-recipient allowlist

In gated_send mode, allowlisted recipients bypass the approval queue. Add exact addresses (vendor@example.com) or domain wildcards (*@example.com). Every addition requires operator email approval. The agent cannot self-approve allowlist changes.

The practical middle ground: routine correspondence with known contacts goes immediately, new recipients still require oversight.

Cryptographic identity

Every outbound email carries a signed X-MultiMail-Identity header (ECDSA P-256). The payload includes operator name, oversight mode, capabilities, and verification status. Recipients verify against the public key at GET /.well-known/multimail-signing-key.

A separate X-MultiMail-Reputation header links to privacy-preserving reputation data: bounce rates, complaint rates, account age. No raw addresses exposed.

Without verified identity, recipients cannot distinguish your agent from a spammer. With it, they can verify the operator, the oversight level, and the sending history before reading a word.

Agent DID relay (optional). If your agent has bound a did:key to its MultiMail account, pass an optional ucan parameter to send_email / reply_email. MultiMail relays your agent's self-signed UCAN verbatim in a separate X-Agent-Identity header (did="…"; ucan="…") — it does not sign or vouch for it; recipient tooling verifies the delegation independently. Inert unless a DID is bound.

Agent self-registration (auth.md)

Agents can register themselves without a browser. The protocol uses verified-email identity assertion, following the auth.md convention inspired by WorkOS AuthKit:

POST /agent/auth -> claim_token + OTP sent to operator email
POST /agent/auth/claim/complete -> API key + tenant_id + granted scopes

Discovery follows RFC 9728:

  • GET /.well-known/oauth-protected-resource (resource metadata)

  • GET /.well-known/oauth-authorization-server (authorization metadata with agent_auth extension)

  • GET /auth.md (human/agent-readable registration guide)

The WWW-Authenticate header on 401 responses points agents to these endpoints automatically. An agent that hits a 401 can follow the link, read the registration protocol, and onboard itself.

Content scanning

Every outbound email is scanned before delivery. Emails enter pending_scan status, then transition to delivery or pending_send_approval (in gated modes). Inbound emails go through the same pipeline. Phishing, malware, and prompt injection patterns are flagged before reaching the agent's inbox.

How it works

  • Email bodies are markdown in, formatted HTML out. Inbound HTML arrives as clean markdown (15x fewer tokens than raw MIME).

  • Threading is automatic. Reply to an email and headers are set correctly.

  • Sends return pending_scan while scanned. Gated mailboxes then transition to pending_send_approval for human review. Do not retry.

  • Every outbound email carries a cryptographically signed X-MultiMail-Identity header.

  • Reputation data via X-MultiMail-Reputation header: bounce rates, complaint rates, account age. Privacy-preserving, updated daily.

Tools (50)

Tool

Description

Core email

send_email

Send email as markdown. Supports attachments, idempotency_key, scheduled delivery via send_at.

check_inbox

List emails with filters: status, sender, subject, date range, direction, attachments, pagination.

read_email

Full email content. Trusted metadata and untrusted body returned as separate content blocks.

reply_email

Reply in-thread. Threading headers set automatically.

get_thread

All emails in a conversation thread with participants and metadata.

download_attachment

Download attachment as base64 with content type.

cancel_message

Cancel a pending or scheduled email.

edit_scheduled_email

Edit scheduled email before it sends.

wait_for_email

Block until matching email arrives or timeout (max 120s).

get_tags

Get all tags on an email. Persistent key-value agent memory across sessions.

set_tags

Set tags on an email. Merges with existing tags.

delete_tag

Delete a specific tag key from an email.

Oversight

list_pending

Emails awaiting oversight decision (requires oversight scope).

decide_email

Approve or reject a pending email (requires oversight scope).

manage_upgrade

Request or apply oversight mode upgrade (action: request|apply).

Sending allowlist

list_allowlist

List sending allowlist entries.

add_allowlist_entry

Add a recipient to the sending allowlist. Operator approval required.

remove_allowlist_entry

Remove an allowlist entry.

Mailbox management

list_mailboxes

All mailboxes with ID, address, oversight mode, display name.

configure_mailbox

First-run setup: oversight mode, display name, CC/BCC, scheduling, signature.

update_mailbox

Update settings (display name, oversight mode, signature, webhooks).

create_mailbox

Create mailbox (admin scope + operator approval).

delete_mailbox

Permanently delete a mailbox (admin scope).

Account & billing

get_account

Account status, plan, quota, sending enabled, enforcement tier.

update_account

Update org name, oversight email, physical address.

delete_account

Permanently delete account and all data (admin scope).

get_usage

Quota and usage stats for the billing period.

upgrade_plan

Upgrade to paid plan (Builder $9/mo, Pro $29/mo, Scale $99/mo).

cancel_subscription

Cancel paid subscription, revert to starter at period end.

get_billing_portal

Stripe portal URL for self-service billing.

Signup (no API key needed)

request_challenge

ALTCHA proof-of-work challenge for account creation.

create_account

Create account with solved PoW challenge.

resend_confirmation

Resend activation email with new code.

activate_account

Activate account using confirmation code.

setup_multimail

Guided onboarding on the public /onboard endpoint.

API keys & audit

list_api_keys

List all API keys (admin scope).

create_api_key

Create API key with scopes (admin + operator approval). send+oversight rejected to prevent self-approval.

revoke_api_key

Revoke an API key (admin scope).

get_audit_log

Account audit log (admin scope).

Contacts & spam

search_contacts

Search contacts by name or email.

add_contact

Add a contact.

delete_contact

Delete a contact.

manage_spam_status

Report spam or clear spam status (action: report|clear).

list_spam

Spam-flagged and quarantined emails.

list_suppression

List suppressed recipients with pagination.

remove_suppression

Remove a recipient from the suppression list.

Webhooks

create_webhook

Create webhook for real-time email event notifications.

list_webhooks

List all webhooks.

delete_webhook

Delete a webhook.

Meta

report_issue

Report a bug, site problem, or feature request.

Example prompts

Find the most recent email from alice@example.com, summarize what she's asking,
then draft a reply saying I'll review this week. Don't send until I approve.
Check my inbox and summarize the last 5 unread emails.
For each: sender, subject, time, and whether it needs action today.
Review the pending approval queue. For each pending email: who it goes to,
the subject, risk factors, and whether to approve or reject.
Show my current sending allowlist. Then add *@acme.com so emails to Acme skip approval.

Environment variables

Variable

Required

Description

MULTIMAIL_API_KEY

For stdio mode

Your API key (mm_live_...). Not needed for remote server (uses OAuth).

MULTIMAIL_MAILBOX_ID

No

Default mailbox ID. If unset, pass mailbox_id per tool or call list_mailboxes.

MULTIMAIL_API_URL

No

API base URL. Defaults to https://api.multimail.dev.

Also available

Development

npm install
npm run dev   # Run with tsx
npm run build # Compile TypeScript
npm start     # Run compiled version

License

MIT

By using MultiMail you agree to the Terms of Service and Acceptable Use Policy.

Available Tools

7 tools
check_inboxAInspect

List emails in your inbox. Returns email summaries including id, from, to, subject, status, received_at, and has_attachments. Does NOT include the email body — call read_email with the email ID to get the full message content.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFilter by email status (default: all)
mailbox_idNoMailbox ID (uses MULTIMAIL_MAILBOX_ID env var if not provided)

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the return format (email summaries with specific fields) and clarifies what is not included (email body), which is valuable context. However, it lacks details on potential behavioral traits like pagination, rate limits, authentication requirements, or error handling, leaving some gaps for a tool with no annotation coverage.

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 front-loaded with the core purpose in the first sentence, followed by essential details on return values and tool differentiation. Every sentence adds value—clarifying included fields, excluded content, and when to use alternatives—with no redundant or unnecessary information, making it highly efficient and well-structured.

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?

Given the tool's moderate complexity (listing emails with filtering), no annotations, and no output schema, the description does a good job by specifying the return format and tool differentiation. However, it could be more complete by mentioning potential limitations (e.g., pagination, default sorting) or error scenarios, which would help an agent use it more effectively in varied contexts.

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?

The schema description coverage is 100%, so the schema already documents both parameters ('status' and 'mailbox_id') with descriptions and enum values. The description does not add any parameter-specific information beyond what the schema provides, such as default behaviors or usage examples. This meets the baseline of 3 for high schema coverage without additional param details.

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 specific action ('List emails in your inbox') and resource ('emails'), distinguishing it from siblings like 'read_email' (which gets full content) and 'list_mailboxes' (which lists mailboxes rather than emails). It provides precise scope by mentioning what's included (summaries with specific fields) and what's excluded (email body).

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 states when to use this tool ('List emails in your inbox') versus alternatives ('call read_email with the email ID to get the full message content'), providing clear guidance on tool selection. It differentiates from 'read_email' by specifying that this tool returns summaries only, not full content.

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

list_mailboxesAInspect

List all mailboxes available to this API key. Returns each mailbox's ID, email address, oversight mode, and display name. Use this to discover your mailbox ID if MULTIMAIL_MAILBOX_ID is not set.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses what the tool returns ('Returns each mailbox's ID, email address, oversight mode, and display name'), which is valuable behavioral information. However, it doesn't mention potential limitations like pagination, rate limits, or authentication requirements, leaving some gaps.

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 perfectly concise with two sentences: the first states purpose and return values, the second provides usage guidance. Every word earns its place, and the structure is front-loaded with the core functionality.

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?

Given the tool's simplicity (0 parameters, no annotations, no output schema), the description is quite complete. It explains what the tool does, what it returns, and when to use it. The only minor gap is the lack of output format details, but for a list operation this is acceptable.

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 0 parameters with 100% schema description coverage, so the baseline would be 4. The description appropriately doesn't discuss parameters since there are none, which is correct and efficient.

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 specific action ('List all mailboxes') and resource ('available to this API key'), distinguishing it from sibling tools like check_inbox or read_email which operate on specific mailboxes rather than listing them. It provides a concrete purpose beyond just the tool name.

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 states when to use this tool: 'Use this to discover your mailbox ID if MULTIMAIL_MAILBOX_ID is not set.' This provides clear guidance on the primary use case and distinguishes it from alternatives like check_inbox which require a mailbox ID.

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

read_emailAInspect

Get the full content of a specific email, including the markdown body and attachment metadata. Automatically marks unread emails as read. Use the email ID from check_inbox results.

ParametersJSON Schema
NameRequiredDescriptionDefault
email_idYesThe email ID to read
mailbox_idNoMailbox ID (uses MULTIMAIL_MAILBOX_ID env var if not provided)

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behaviors: it retrieves email content and 'Automatically marks unread emails as read,' which is a critical side effect not obvious from the tool name. It lacks details on error handling or rate limits, but covers the main operational behavior.

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 appropriately sized and front-loaded, with three concise sentences that each add value: the first states the purpose, the second reveals a key behavioral trait, and the third provides usage guidance. There is no wasted text.

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?

Given the tool's moderate complexity (read operation with side effects), no annotations, and no output schema, the description is mostly complete. It covers purpose, behavior, and usage context, but lacks details on return values (e.g., structure of the response) and error conditions, which would be helpful for an agent.

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 the schema already documents both parameters ('email_id' and 'mailbox_id') fully. The description adds no additional parameter semantics beyond what the schema provides, such as format examples or usage tips, meeting the baseline for high schema coverage.

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 specific action ('Get the full content'), resource ('a specific email'), and scope ('including the markdown body and attachment metadata'). It distinguishes from siblings like 'check_inbox' (which lists emails) and 'send_email' (which sends emails).

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 description provides clear context for when to use this tool ('Use the email ID from check_inbox results'), establishing a workflow dependency. However, it does not explicitly state when not to use it or name alternatives (e.g., vs. 'search_identity' for finding emails).

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

reply_emailAInspect

Reply to an email in its existing thread. Threading headers (In-Reply-To, References) are set automatically. The body is written in markdown. If the mailbox is in read_only mode, this returns a 403 error with upgrade instructions. If the mailbox uses gated oversight, the response status will be 'pending_approval' — the reply is queued for human review. Do not retry or resend when you see pending_approval.

ParametersJSON Schema
NameRequiredDescriptionDefault
email_idYesThe email ID to reply to
markdownYesReply body in markdown format
ccNoCC email addresses
mailbox_idNoMailbox ID (uses MULTIMAIL_MAILBOX_ID env var if not provided)

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and does so well by disclosing key behavioral traits: automatic threading header handling, markdown body format, error responses (403 with upgrade instructions), and queuing behavior for gated oversight ('pending_approval' status). It does not cover all possible behaviors like rate limits or auth needs, but adds substantial context beyond basic functionality.

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 appropriately sized and front-loaded, starting with the core purpose and then adding critical behavioral details. Every sentence adds value, such as error handling and status warnings, with no wasted words or redundancy.

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?

Given the complexity of an email reply tool with no annotations and no output schema, the description is mostly complete, covering purpose, usage context, and key behaviors. However, it lacks details on return values or success responses, which could be important for agent handling, preventing a perfect score.

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 the schema already documents all parameters. The description does not add meaning beyond the schema, such as explaining parameter interactions or constraints. Baseline 3 is appropriate as the schema handles parameter documentation adequately.

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 specific action ('Reply to an email in its existing thread') and resource ('email'), distinguishing it from siblings like 'send_email' (new email) and 'read_email' (viewing). It specifies that threading headers are handled automatically, which adds precision.

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 description provides clear context for usage by mentioning error conditions (403 error for read-only mode, 'pending_approval' for gated oversight) and advising against retries in specific cases. However, it does not explicitly compare to alternatives like 'send_email' or state when not to use it, keeping it from a perfect score.

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

resend_confirmationAInspect

Resend the operator anti-spam confirmation email. Use this if the account is stuck in 'pending_operator_confirmation' status because the original confirmation email was lost or filtered. Rate limited to 1 request per 5 minutes. Only works for unconfirmed accounts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behavioral traits: the rate limit ('Rate limited to 1 request per 5 minutes'), the precondition ('Only works for unconfirmed accounts'), and the specific use case (accounts stuck in pending_operator_confirmation). However, it doesn't mention error conditions or what happens after the email is resent.

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 perfectly concise with three sentences that each serve a distinct purpose: stating the action, providing usage context, and disclosing behavioral constraints. There is zero wasted text, and the most critical information (what the tool does) is front-loaded.

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?

Given the tool's moderate complexity (administrative action with rate limits), no annotations, and no output schema, the description does a good job covering the essential context: purpose, usage conditions, and behavioral constraints. However, it doesn't describe what the tool returns or what happens after the email is sent, leaving some gaps in 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 tool has 0 parameters with 100% schema description coverage, so the baseline would be 4. The description doesn't need to explain parameters, but it does implicitly confirm there are no required inputs by describing the tool's function without mentioning any parameters.

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 specific action ('Resend the operator anti-spam confirmation email') and the resource it operates on (confirmation emails for accounts). It distinguishes this tool from siblings by focusing on a specific administrative function rather than general email operations like sending, reading, or searching.

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 states when to use this tool ('if the account is stuck in pending_operator_confirmation status because the original confirmation email was lost or filtered') and when not to use it ('Only works for unconfirmed accounts'). This provides clear context and exclusions, though it doesn't name specific alternative tools.

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

search_identityAInspect

Look up the public identity document for any MultiMail email address. Returns the agent's operator, oversight mode, capabilities, and whether the operator is verified. No authentication required. Use this to verify another agent's identity before sending sensitive information.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesThe email address to look up (e.g. sandy@multimail.dev)

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: it's a read-only lookup ('look up'), requires no authentication ('No authentication required'), and describes the return content. However, it doesn't mention potential errors, rate limits, or data freshness, leaving some gaps.

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 efficiently structured in two sentences: the first states purpose and returns, the second provides usage guidance. Every phrase adds value with zero waste, making it easy to parse and front-loaded with essential information.

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?

For a simple lookup tool with 1 parameter and no output schema, the description is nearly complete: it covers purpose, usage, behavioral aspects, and return values. It lacks details on error cases or output structure, but given the low complexity, this is a minor gap.

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 the schema already documents the single 'address' parameter. The description adds no additional parameter details beyond implying it's for email addresses, which the schema's format already specifies. Baseline 3 is appropriate as the schema does the heavy lifting.

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 ('look up') and resource ('public identity document for any MultiMail email address'), specifying it returns operator, oversight mode, capabilities, and verification status. It distinguishes from siblings like check_inbox or send_email by focusing on identity verification rather than email operations.

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?

It explicitly states when to use this tool ('to verify another agent's identity before sending sensitive information'), providing clear context for its application. While it doesn't name specific alternatives, the guidance is direct and actionable for the intended use case.

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

send_emailAInspect

Send an email from your MultiMail address. The body is written in markdown and automatically converted to formatted HTML for delivery. If the mailbox is in read_only mode, this returns a 403 error with upgrade instructions — use request-upgrade to ask the operator for more autonomy. If the mailbox uses gated oversight, the response status will be 'pending_approval' — this means the email is queued for human review. Do not retry or resend when you see pending_approval.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesRecipient email addresses
subjectYesEmail subject line
markdownYesEmail body in markdown format
ccNoCC email addresses
mailbox_idNoMailbox ID (uses MULTIMAIL_MAILBOX_ID env var if not provided)

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It excellently describes multiple behavioral traits: markdown-to-HTML conversion, error handling for read_only mode (403 with upgrade instructions), and gated oversight behavior (pending_approval status with no-retry policy). This provides comprehensive behavioral context beyond basic functionality.

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 efficiently structured with three sentences, each serving a distinct purpose: core functionality, error handling, and approval workflow. There's zero wasted language, and critical information is front-loaded about the main sending functionality before detailing edge cases.

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 mutation tool with no annotations and no output schema, the description provides exceptional completeness. It covers the core functionality, input format (markdown), error scenarios (403, pending_approval), and behavioral constraints (no retry). This gives the agent sufficient context to use the tool correctly despite the lack of structured metadata.

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?

The schema description coverage is 100%, so the baseline is 3. The description doesn't add specific parameter semantics beyond what's in the schema, though it does mention markdown format for the body which aligns with the schema's 'markdown' parameter description. No additional parameter context is provided.

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 specific action ('send an email'), identifies the resource ('from your MultiMail address'), and distinguishes it from siblings like 'reply_email' or 'check_inbox' by focusing on sending new emails. It provides additional context about markdown conversion that further clarifies its unique function.

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 provides when-to-use guidance by mentioning the 'read_only mode' scenario (returns 403 error) and directing users to 'use request-upgrade' as an alternative. It also explains the 'pending_approval' status for gated oversight mailboxes and explicitly states 'Do not retry or resend' in that case, providing clear usage boundaries.

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

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a distinct and clearly defined purpose with no overlap. For example, check_inbox lists emails, read_email retrieves full content, send_email and reply_email handle different sending actions, and search_identity serves a unique verification function. The descriptions explicitly differentiate tools, preventing agent misselection.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case, such as check_inbox, list_mailboxes, and send_email. This uniformity makes the tool set predictable and easy to navigate, with no deviations in naming conventions.

Tool Count5/5

With 7 tools, the server is well-scoped for email management, covering core operations like reading, sending, replying, searching, and administrative tasks. Each tool serves a necessary function without redundancy, fitting the domain appropriately.

Completeness4/5

The tool set covers essential email workflows including inbox checking, reading, sending, replying, identity verification, and administrative actions. A minor gap exists in lacking explicit tools for deleting emails or managing attachments beyond metadata, but agents can work around this with the provided operations.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    Server for Gmail integration in Claude Desktop with auto authentication support. This server enables AI assistants to manage Gmail through natural language interactions.
    20,627
    1,165
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Provides IMAP and SMTP capabilities, enabling developers to manage email services with seamless integration and automated workflows.
    15
    320
    BSD 3-Clause
  • A
    license
    A
    quality
    A
    maintenance
    A simple MCP server that enables users to send emails using Resend's API, integrating with tools like Cursor and Claude Desktop for seamless email composition and delivery.
    102
    21,862
    566
    MIT
  • -
    license
    C
    quality
    C
    maintenance
    Gives on-the-fly inboxes to AI agents. Agents / LLM's can send, receive, and take action in isolated inboxes. Built for AI unlike Gmail. Check us out at agentmail.to
    10
    92

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/multimail-dev/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server