OpenAI Speech-to-Text transcriptions MCP Server
@Ichigo3766
OpenAI Speech-to-Text transcriptions MCP Server について
A MCP server that provides audio transcription capabilities using OpenAI's Whisper API
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"audio-transcriber": {
"command": "node",
"args": [
"/path/to/audio-transcriber-mcp/build/index.js"
],
"env": {
"OPENAI_API_KEY": "",
"OPENAI_BASE_URL": "",
"OPENAI_MODEL": ""
}
}
}
}ツール
1Transcribe audio files using OpenAI's API
概要
What is OpenAI Speech-to-Text transcriptions MCP Server?
A Model Context Protocol server that provides audio transcription capabilities using OpenAI’s API. It is built for developers who want to integrate speech-to-text into MCP-compatible applications.
How to use OpenAI Speech-to-Text transcriptions MCP Server?
Clone the repository, run npm install and npm run build, then set your OPENAI_API_KEY environment variable. Add the server configuration to your MCP settings with the compiled index.js file. Use the transcribe_audio tool with a file path; optionally set save_to_file (Boolean) and language (ISO‑639‑1 code).
Key features of OpenAI Speech-to-Text transcriptions MCP Server
- Transcribes audio files via OpenAI’s API
- Optional language parameter (ISO‑639‑1 code)
- Option to save transcription output to a file
- Configurable OpenAI base URL and model
- Open source under the MIT License
Use cases of OpenAI Speech-to-Text transcriptions MCP Server
- Transcribing meeting recordings for searchable notes
- Adding speech-to-text to AI assistants or chatbots
- Processing user‑uploaded audio in MCP‑based apps
- Converting voice memos to text with language selection
FAQ from OpenAI Speech-to-Text transcriptions MCP Server
What does the server do?
It provides a transcribe_audio tool that sends audio files to OpenAI’s speech‑to‑text endpoint and returns the transcription.
What are the requirements?
You need Node.js, npm, and an OpenAI API key. Optionally you can set a custom base URL and model.
How do I configure the server?
Add the server to your MCP configuration with the command: "node" and args pointing to the built index.js, and set OPENAI_API_KEY in the env object.
What parameters does transcribe_audio accept?
It requires filepath (string). Optional parameters: save_to_file (Boolean) and language (ISO‑639‑1 code, e.g., “en”).
Where is my audio data processed?
The server sends audio to OpenAI’s API. No local storage or processing is described in the README.
「メディアとデザイン」の他のコンテンツ
Melrōse - programming of music melodies
emickleiinteractive programming of melodies, producing MIDI
RustChain MCP
ScottcjnMCP server for RustChain blockchain and BoTTube video platform — AI agent tools for earning RTC tokens. Built on createkr's RustChain SDK.
MiniMax MCP JS
MiniMax-AIOfficial MiniMax Model Context Protocol (MCP) JavaScript implementation that provides seamless integration with MiniMax's powerful AI capabilities including image generation, video generation, text-to-speech, and voice cloning APIs.
Photoshop MCP Server
loonghaoA Model Context Protocol (MCP) server that interfaces with Adobe Photoshop's Python API. Enables LLMs to execute image editing operations, automate workflows, and manage Photoshop tasks through structured commands and context-aware interactions.
YouTube Transcript MCP Server
jkawamotoMCP server retrieving transcripts of YouTube videos
コメント