get_email_content
Fetch email content by providing the email ID using the JMAP MCP Server tool for efficient email data retrieval.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputSchema | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputSchema": {
"additionalProperties": false,
"properties": {
"emailId": {
"description": "The ID of the email to fetch.",
"type": "string"
}
},
"required": [
"emailId"
],
"type": "object"
}
},
"required": [
"inputSchema"
],
"type": "object"
}