Ontology MCP

mcp_openai_transcribe

Convert audio to text using the OpenAI Whisper API, supporting multiple languages and customizable prompts for enhanced transcription accuracy.

Instructions

OpenAI Whisper API를 사용하여 음성을 텍스트로 변환합니다. 변환된 텍스트를 반환합니다.

Input Schema

NameRequiredDescriptionDefault
audioPathYes변환할 오디오 파일 경로
languageNo오디오 언어 (예: ko, en, ja)
modelNo사용할 모델 (예: whisper-1)
promptNo인식을 도울 힌트 텍스트

Input Schema (JSON Schema)

{ "properties": { "audioPath": { "description": "변환할 오디오 파일 경로", "type": "string" }, "language": { "description": "오디오 언어 (예: ko, en, ja)", "type": "string" }, "model": { "description": "사용할 모델 (예: whisper-1)", "type": "string" }, "prompt": { "description": "인식을 도울 힌트 텍스트", "type": "string" } }, "required": [ "audioPath" ], "type": "object" }
ID: mxvujkgabm