changedInput schema / properties / action / description
Previous value: -"Which operation to perform. Determines which other arguments are used."New value: +"Operation to run. delete = one message_id; delete_batch = up to 500 message_ids; search_and_delete = every message matching a search, up to limit; the result's has_more says whether matches were left behind."
changedInput schema / properties / before / description
Previous value: -"ISO 8601 date or datetime; return messages received strictly before (<) this instant."New value: +"Received strictly before this date or datetime (no timezone = UTC)."
changedInput schema / properties / before / format
Previous value: -"date-time"New value: +"date-or-date-time"
changedInput schema / properties / body / description
Previous value: -"Free text to find in the message body. (On Gmail this matches the whole message, not body-only.)"New value: +"Text to find in the body. On Gmail this matches the whole message."
changedInput schema / properties / cc / description
Previous value: -"Carbon-copy (Cc) recipient to match: email address, display name, or fragment."New value: +"Cc recipient to match: address, name, or fragment."
changedInput schema / properties / flagged / description
Previous value: -"true = only flagged/starred messages. Not supported on Outlook/Graph (ignored there)."New value: +"true = only flagged/starred messages. Ignored on Outlook."
changedInput schema / properties / from / description
Previous value: -"Sender to match: email address, display name, or fragment (e.g. \"alice@example.com\" or \"Alice\")."New value: +"Sender to match: address, name, or fragment."
changedInput schema / properties / has_attachment / description
Previous value: -"true = only messages with an attachment. Not supported on generic IMAP (ignored there)."New value: +"true = only messages with an attachment. Ignored on generic IMAP."
addedInput schema / properties / idempotency_key
Added value: +{
+ "description": "Reuse only when retrying the identical request within 24 hours; the retry is collapsed, not repeated. Reuse with different arguments is rejected.",
+ "maxLength": 200,
+ "minLength": 1,
+ "type": "string"
+}
changedInput schema / properties / inbox / description
Previous value: -"Email address of the inbox to use, as a friendly alternative to inbox_id. Optional; ignored if inbox_id is given."New value: +"Inbox email address, an alternative to inbox_id."
changedInput schema / properties / inbox_id / description
Previous value: -"UUID of the inbox to use. Optional when the API key has access to exactly one inbox (it is auto-selected). Alternatively pass `inbox` with an email address. If you don't know the inbox_id and several are accessible, just omit it — the response then lists every inbox with its inbox_id so you can retry (calling inbox_list does the same)."New value: +"Inbox UUID from inbox_list. Optional when the key has one inbox; pass this or `inbox`, not both."
changedInput schema / properties / include_folders / description
Previous value: -"Optional list of folder/mailbox names to restrict the search scope."New value: +"Folder names to search."
changedInput schema / properties / limit / description
Previous value: -"Maximum number of matching messages to delete. Default: 500."New value: +"Cap on messages deleted. Default 500."
changedInput schema / properties / message_id / description
Previous value: -"Provider-native message ID as returned by email_list, email_read, or email_search."New value: +"Provider-native message id from a list or search."
changedInput schema / properties / message_ids / description
Previous value: -"Provider-native message IDs to delete. Maximum 500 IDs per call."New value: +"Provider-native message ids to delete. Duplicates are removed, first occurrence kept, so succeeded counts distinct messages."
changedInput schema / properties / permanent / description
Previous value: -"When true, hard-deletes the message (bypasses Trash). When false or omitted, moves the message to Trash. Default: false."New value: +"Hard-delete, bypassing Trash. Default false, which trashes it."
changedInput schema / properties / query / description
Previous value: -"Raw provider-native query string (escape hatch). Prefer the structured fields above. Combined with them where supported; ignored on Fastmail."New value: +"Provider-native raw query (escape hatch); prefer the structured fields. Ignored on Fastmail."
changedInput schema / properties / since / description
Previous value: -"ISO 8601 date or datetime; return messages received on/after (>=) this instant. E.g. \"2026-06-01\"."New value: +"Received on or after this date or datetime (no timezone = UTC)."
changedInput schema / properties / since / format
Previous value: -"date-time"New value: +"date-or-date-time"
changedInput schema / properties / subject / description
Previous value: -"Text to match in the subject line. Multi-word phrases are matched as-is."New value: +"Text to match in the subject; phrases match as-is."
changedInput schema / properties / text / description
Previous value: -"Free text to match anywhere in the message (headers and body)."New value: +"Text to match anywhere, headers included."
changedInput schema / properties / to / description
Previous value: -"Primary (To) recipient to match: email address, display name, or fragment."New value: +"To recipient to match: address, name, or fragment."
changedInput schema / properties / unread / description
Previous value: -"true = only unread messages; false = only read messages; omit for either."New value: +"true = unread only; false = read only; omit for both."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "failed": {
+ "type": "integer"
+ },
+ "has_more": {
+ "description": "True when messages matching the query were left UNTOUCHED because of the limit. Check this before reporting the sweep complete: re-run until it is false.",
+ "type": "boolean"
+ },
+ "inbox_id": {
+ "type": "string"
+ },
+ "notes": {
+ "description": "Server notes about how this call was handled — for example an argument that was not applied because the selected action does not accept it. Written by MCP Emails, not taken from any message, and absent when there is nothing to report.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "operation": {
+ "type": "string"
+ },
+ "succeeded": {
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}