49 tools. 24 can modify or destroy data without limits.
5 destructive tools with no built-in limits. Policy required.
Last updated:
Destructive tools (delete_draft, delete_filter, delete_label) permanently delete resources. There is no undo. An agent calling these in a retry loop causes irreversible damage.
Write operations (archive_email, authenticate, batch_modify_emails) modify state. Without rate limits, an agent can make hundreds of changes in seconds — faster than any human can review or revert.
Execute tools (reauth) trigger processes with side effects. Builds, notifications, workflows — all fired without throttling.
delete_draft:
rules:
- action: deny Destructive tools should never be available to autonomous agents without human approval.
archive_email:
rules:
- rate_limit: 30/hour Prevents bulk unintended modifications from agents caught in loops.
bulk_trash:
rules:
- rate_limit: 60/minute Controls API costs and prevents retry loops from exhausting upstream rate limits.
Yes. The Mailbox server exposes 5 destructive tools including delete_draft, delete_filter, delete_label. These permanently remove resources with no undo. Intercept blocks destructive tools by default so they never reach the upstream server.
The Mailbox server has 18 write tools including archive_email, authenticate, batch_modify_emails. Set rate limits in your policy file -- for example, rate_limit: 10/hour prevents an agent from making more than 10 modifications per hour. Intercept enforces this at the transport layer.
49 tools across 4 categories: Destructive, Execute, Read, Write. 25 are read-only. 24 can modify, create, or delete data.
One line change. Instead of running the Mailbox server directly, prefix it with Intercept: intercept -c mailbox.yaml -- npx -y @mailbox-mcp. Download a pre-built policy from policylayer.com/policies/mailbox and adjust the limits to match your use case.
Starter policies available for each. Same risk classification, same one-command setup.
Deterministic policy on every MCP tool call. Per-identity grants. Full audit log.