Kobold MCP Server

kobold_tts

Generate text-to-speech audio

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
speedNo
textYes
voiceNo

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" }