create-label
Generate and manage Gmail labels by specifying name, label list visibility, and message list visibility using this tool from the Meme MCP Server.
Instructions
Create a new Gmail label
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labelListVisibility | No | Visibility of the label in the label list | |
messageListVisibility | No | Visibility of the label in the message list | |
name | Yes | The name of the label to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"labelListVisibility": {
"description": "Visibility of the label in the label list",
"type": "string"
},
"messageListVisibility": {
"description": "Visibility of the label in the message list",
"type": "string"
},
"name": {
"description": "The name of the label to create",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}