speak
Convert text to speech on macOS using customizable voice and rate settings. Ideal for notifications or accessibility needs within the Apple ecosystem.
Instructions
Speak text using macOS text-to-speech
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rate | No | Speech rate (-50 to 50, defaults to 0) | |
text | Yes | Text to speak | |
voice | No | Voice 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"
}