kobold_tts
Convert text to speech audio using customizable voice and speed settings, integrated with Kobold MCP Server for enhanced AI-driven applications.
Instructions
Generate text-to-speech audio
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| apiUrl | No | http://localhost:5001 | |
| speed | No | ||
| text | Yes | ||
| voice | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "apiUrl": {
      "default": "http://localhost:5001",
      "type": "string"
    },
    "speed": {
      "type": "number"
    },
    "text": {
      "type": "string"
    },
    "voice": {
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "type": "object"
}