Kobold MCP Server

kobold_transcribe

Transcribe audio using Whisper

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
audioYes
languageNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "apiUrl": { "default": "http://localhost:5001", "type": "string" }, "audio": { "type": "string" }, "language": { "type": "string" } }, "required": [ "audio" ], "type": "object" }