Google Workspace MCP Server

modify_email

Modify email labels (archive, trash, mark read/unread)

Input Schema

NameRequiredDescriptionDefault
addLabelsNoLabels to add
idYesEmail ID
removeLabelsNoLabels to remove

Input Schema (JSON Schema)

{ "properties": { "addLabels": { "description": "Labels to add", "items": { "type": "string" }, "type": "array" }, "id": { "description": "Email ID", "type": "string" }, "removeLabels": { "description": "Labels to remove", "items": { "type": "string" }, "type": "array" } }, "required": [ "id" ], "type": "object" }