Google Super
GOOGLESUPER_LIST_THREADS
Retrieves a list of email threads from a Gmail account, identified by `user_id` (email address or 'me'), supporting filtering and pagination.
Remote googlesuper
Other tools also called GOOGLESUPER_LIST_THREADS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"title": "Query",
"default": "",
"examples": [
"is:unread",
"from:[email protected]",
"subject:important"
],
"description": "Filter for threads, using Gmail search query syntax (e.g., 'from:[email protected] is:unread')."
},
"user_id": {
"type": "string",
"title": "User Id",
"default": "me",
"examples": [
"me",
"[email protected]"
],
"description": "The user's email address or 'me' to specify the authenticated Gmail account."
},
"verbose": {
"type": "boolean",
"title": "Verbose",
"default": false,
"examples": [
true,
false
],
"description": "If false, returns threads with basic fields (id, snippet, historyId). If true, returns threads with complete message details including headers, body, attachments, and metadata for each message in the thread."
},
"page_token": {
"type": "string",
"title": "Page Token",
"default": "",
"examples": [
"abcPageToken123"
],
"description": "Token from a previous response to retrieve a specific page of results; omit for the first page."
},
"max_results": {
"type": "integer",
"title": "Max Results",
"default": 10,
"maximum": 500,
"minimum": 1,
"examples": [
"10",
"50",
"100"
],
"description": "Maximum number of threads to return."
}
}
}