Gmail MCP

by shinzo-labs
Verified
MIT License
126
1
  • Apple
  • Linux

update_imap

Modify IMAP settings for Gmail accounts, enabling or disabling IMAP access, setting expunge behavior, and adjusting folder message limits.

Instructions

Updates IMAP settings

Input Schema

NameRequiredDescriptionDefault
enabledYesWhether IMAP is enabled for the account
expungeBehaviorNoThe action that will be executed on a message when it is marked as deleted and expunged from the last visible IMAP folder
maxFolderSizeNoAn optional limit on the number of messages that can be accessed through IMAP

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "enabled": { "description": "Whether IMAP is enabled for the account", "type": "boolean" }, "expungeBehavior": { "description": "The action that will be executed on a message when it is marked as deleted and expunged from the last visible IMAP folder", "enum": [ "archive", "trash", "deleteForever" ], "type": "string" }, "maxFolderSize": { "description": "An optional limit on the number of messages that can be accessed through IMAP", "type": "number" } }, "required": [ "enabled" ], "type": "object" }
ID: 1je9b8hapn