Get Gmail Message
gmail_get_messageFetch a complete Gmail message by its ID, returning headers and body text in markdown or JSON format.
Instructions
Get the full content of a specific Gmail message.
Args:
message_id (string): The message ID to retrieve
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Full message content including headers and body text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes | The ID of the message to retrieve | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |