move-to-trash
Move emails to trash by specifying their IDs, helping users manage inbox clutter effectively within the Meme MCP Server environment.
Instructions
Move emails to trash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emailIds | Yes | Array of email IDs to move to trash |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emailIds": {
"description": "Array of email IDs to move to trash",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"emailIds"
],
"type": "object"
}