apple-notifier-mcp

speak

Speak text using macOS text-to-speech

Input Schema

NameRequiredDescriptionDefault
rateNoSpeech rate (-50 to 50, defaults to 0)
textYesText to speak
voiceNoVoice to use (defaults to system voice)

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "rate": { "description": "Speech rate (-50 to 50, defaults to 0)", "maximum": 50, "minimum": -50, "type": "number" }, "text": { "description": "Text to speak", "type": "string" }, "voice": { "description": "Voice to use (defaults to system voice)", "type": "string" } }, "required": [ "text" ], "type": "object" }