get_attachment
Retrieve specific attachments from Gmail messages by providing the message ID and attachment ID. Simplify email attachment management using the Gmail MCP server.
Instructions
Get a message attachment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the attachment | |
messageId | Yes | ID of the message containing the attachment |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the attachment",
"type": "string"
},
"messageId": {
"description": "ID of the message containing the attachment",
"type": "string"
}
},
"required": [
"messageId",
"id"
],
"type": "object"
}