get-email
Retrieve a specific email by its ID using MCP server integration. Ideal for accessing targeted email data within the Meme MCP Server ecosystem.
Instructions
Get a specific email by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emailId | Yes | The ID of the email to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emailId": {
"description": "The ID of the email to retrieve",
"type": "string"
}
},
"required": [
"emailId"
],
"type": "object"
}