Ontology MCP

mcp_openai_tts

Convert text to speech using OpenAI TTS API, generate audio files, and provide their paths for user access, ideal for integrating voice outputs into systems or applications.

Instructions

OpenAI TTS API를 사용하여 텍스트를 음성으로 변환합니다. 생성된 오디오 파일 경로를 반환하며, 이 경로는 반드시 사용자에게 알려주어야 합니다.

Input Schema

NameRequiredDescriptionDefault
fileNameNo저장할 파일 이름 (확장자 제외)
modelNo사용할 모델 (예: tts-1, tts-1-hd)
saveDirNo음성 파일을 저장할 디렉토리
speedNo음성 속도(0.25-4.0)
textYes음성으로 변환할 텍스트
voiceNo음성 종류

Input Schema (JSON Schema)

{ "properties": { "fileName": { "description": "저장할 파일 이름 (확장자 제외)", "type": "string" }, "model": { "description": "사용할 모델 (예: tts-1, tts-1-hd)", "type": "string" }, "saveDir": { "description": "음성 파일을 저장할 디렉토리", "type": "string" }, "speed": { "description": "음성 속도(0.25-4.0)", "maximum": 4, "minimum": 0.25, "type": "number" }, "text": { "description": "음성으로 변환할 텍스트", "type": "string" }, "voice": { "description": "음성 종류", "enum": [ "alloy", "echo", "fable", "onyx", "nova", "shimmer" ], "type": "string" } }, "required": [ "text" ], "type": "object" }
ID: mxvujkgabm