list_emails
Extract and display recent emails from a 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 |
---|---|---|---|
maxResults | No | Maximum number of emails to return (default: 10) | |
query | No | Search query to filter emails |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"description": "Maximum number of emails to return (default: 10)",
"type": "number"
},
"query": {
"description": "Search query to filter emails",
"type": "string"
}
},
"type": "object"
}