get-threads
Retrieve email threads from Gmail using a search query and specify the maximum number of results. Integrates with the Meme MCP Server for meme generation workflows.
Instructions
Get email threads
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of threads to retrieve | |
query | No | Gmail search query to filter threads |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxResults": {
"description": "Maximum number of threads to retrieve",
"type": "number"
},
"query": {
"description": "Gmail search query to filter threads",
"type": "string"
}
},
"type": "object"
}