Gmail
gmail_batch_modify
Add or remove labels on multiple messages at once. Maximum 1000 IDs per request.
Remote node2flow/gmail-mcp
Other tools also called gmail_batch_modify?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of message IDs to modify (max 1000)"
},
"add_label_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Label IDs to add to all specified messages"
},
"remove_label_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Label IDs to remove from all specified messages"
}
}
}