List Gmail Attachments
gmail_list_attachmentsList all attachments from a specific Gmail message using its message ID. Returns attachment IDs, filenames, MIME types, and sizes.
Instructions
List all attachments in a specific Gmail message.
Args:
message_id (string): The ID of the message to list attachments from
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: { "attachments": [ { "attachmentId": string, "filename": string, "mimeType": string, "size": number } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes | The ID of the message to list attachments from | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |