get_email_detail
Retrieve detailed content of a specific email, including folder location, using the email ID. Designed for comprehensive email management within the MCP Email Service.
Instructions
Get detailed content of a specific email
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| email_id | Yes | Email ID to get details for | |
| folder | No | Email folder | INBOX | 
Input Schema (JSON Schema)
{
  "properties": {
    "email_id": {
      "description": "Email ID to get details for",
      "type": "string"
    },
    "folder": {
      "default": "INBOX",
      "description": "Email folder",
      "type": "string"
    }
  },
  "required": [
    "email_id"
  ],
  "type": "object"
}