get_recent_emails
Retrieve a list of recent emails from the past three days, with customizable limits on the number of emails returned, using this Email MCP Server tool.
Instructions
获取最近三天的邮件列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | 获取最近几天的邮件(默认3天) | |
limit | No | 返回邮件数量限制(默认20) |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"description": "获取最近几天的邮件(默认3天)",
"type": "number"
},
"limit": {
"description": "返回邮件数量限制(默认20)",
"type": "number"
}
},
"required": [],
"type": "object"
}