send-email
Send emails directly from Claude Desktop by specifying the recipient's email and a message body, using the Hello-MCP server for streamlined external tool integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"maxLength": 200,
"type": "string"
},
"email": {
"format": "email",
"type": "string"
}
},
"required": [
"email",
"body"
],
"type": "object"
}