Google Super

GOOGLESUPER_LIST_DRAFTS

Retrieves a paginated list of email drafts from a user's Gmail account. Use verbose=true to get full draft details including subject, body, sender, and timestamp.

Remote googlesuper

Other tools also called GOOGLESUPER_LIST_DRAFTS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "user_id": {
      "type": "string",
      "title": "User Id",
      "default": "me",
      "examples": [
        "me",
        "[email protected]"
      ],
      "description": "User's mailbox ID; use 'me' for the authenticated user."
    },
    "verbose": {
      "type": "boolean",
      "title": "Verbose",
      "default": false,
      "examples": [
        true,
        false
      ],
      "description": "If true, fetches full draft details including subject, sender, recipient, body, and timestamp. If false, returns only draft IDs (faster)."
    },
    "page_token": {
      "type": "string",
      "title": "Page Token",
      "default": "",
      "examples": [
        "CiaKJDhWSE5UURE9PSIsImMiOiJhYmMxMjMifQ=="
      ],
      "description": "Token from a previous response to retrieve a specific page of drafts."
    },
    "max_results": {
      "type": "integer",
      "title": "Max Results",
      "default": 1,
      "maximum": 500,
      "minimum": 1,
      "examples": [
        10,
        100,
        500
      ],
      "description": "Maximum number of drafts to return per page."
    }
  }
}