Gmail
gmail_modify_message
Add or remove labels on a message. Use this to mark as read/unread, star/unstar, or apply custom labels.
Remote node2flow/gmail-mcp
Other tools also called gmail_modify_message?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The message ID to modify"
},
"add_label_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Label IDs to add (e.g., [\"STARRED\", \"IMPORTANT\"] or custom label IDs)"
},
"remove_label_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Label IDs to remove (e.g., [\"UNREAD\"] to mark as read)"
}
}
}