gmail-get-email
Retrieve a specific Gmail message using its unique message ID to access or process email content directly from the MCP Server Boilerplate environment.
Instructions
Get a specific email by message ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messageId | Yes | Gmail message ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"messageId": {
"description": "Gmail message ID",
"type": "string"
}
},
"required": [
"messageId"
],
"type": "object"
}