list_emails
Fetch and display recent emails from your Gmail inbox using a specific search query, with options to limit the number of results.
Instructions
List recent emails from Gmail inbox
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 10,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "list_emailsArguments",
"type": "object"
}