@speechweave/mcp
OfficialThe SpeechWeave MCP server enables transcription of audio/video from local files or public URLs, supporting both wait-first (synchronous) and async job-based workflows with job management and various configurable options.
Transcription tools:
transcribe_file/transcribe_url: Submit a local file path or URL and wait for the transcript; ideal for short/medium clips. Both accepttimeout_ms; if timeout exceeded, ajob_idis returned for polling.start_job_file/start_job_url: Initiate an async transcription job, immediately returning ajob_id—best for long or deferred processing.
Job management:
get_job_status: Poll for job status and retrieve transcript upon completion.cancel_job: Cancel a queued/in-progress job.
Common options (for all transcription/job-start tools):
model:core(default) ormax.service_mode:deferred(default, background queue) orsynchronous(higher priority).language: Optional ISO language code to force detection.task:transcribe(default) ortranslate(to English).prompt: Custom vocabulary hints (proper nouns, acronyms) for the first ~30 seconds.response_format: On wait-first tools andget_job_status, choosetext,srt,vtt, orverbose_json.
Requirements/Notes:
Local files require an absolute path; URLs must be public HTTPS—raw audio bytes are not supported.
Server needs Node.js 18+ and a SpeechWeave API key.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@speechweave/mcpTranscribe /Users/me/recordings/standup.mp3"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@speechweave/mcp
Official Model Context Protocol server for SpeechWeave. Use to transcribe local files and URLs from Cursor, Claude Desktop, Claude Code, Windsurf, and other MCP clients.
SpeechWeave handles short clips and long-form audio without client-side chunking. This MCP server exposes both wait-first tools (get a transcript in one turn) and async create + poll tools (start a job, then check status).
Docs: speechweave.com/docs/mcp · API reference
Install / run
Requires Node.js 18+ and a SpeechWeave API key (sk_live_…).
export SPEECHWEAVE_API_KEY="sk_live_..."
npx -y @speechweave/mcpRelated MCP server: whisper-transcribe-mcp
Cursor / Claude Desktop
Add to your MCP config (e.g. .cursor/mcp.json, claude_desktop_config.json):
{
"mcpServers": {
"speechweave": {
"command": "npx",
"args": ["-y", "@speechweave/mcp"],
"env": {
"SPEECHWEAVE_API_KEY": "sk_live_..."
}
}
}
}Tools
Tool | Mode | When to use |
| Wait-first | Absolute local path; wait until transcript is ready |
| Wait-first | Public HTTPS URL; wait until transcript is ready |
| Async | Absolute local path; return |
| Async | Public HTTPS URL; return |
| Poll | Fetch status / transcript for a job id |
| Control | Cancel a queued or processing job |
Never pass raw audio bytes over MCP. Use absolute file paths (local clients) or HTTPS URLs.
Configuration & Arguments
All transcription and job-start tools accept the following optional arguments:
model: Choosecore(default) ormax.service_mode: Choosedeferred(default) orsynchronous.language: Optional ISO language code to force language detection.task: Choosetranscribe(default) ortranslateto produce an English translation instead;languageis ignored when translating.prompt: Optional custom vocabulary hint (proper nouns, acronyms, product names) for the first ~30s of audio.
Formatted transcripts: transcribe_file, transcribe_url, and get_job_status also accept an optional response_format (text, srt, vtt, or verbose_json) to return the transcript in that shape instead of the default plain text.
Timeout behavior: Wait-first tools accept an optional timeout_ms. If the transcription exceeds the timeout, the tool gracefully returns a job_id and instructs the client to switch to get_job_status polling.
Example Prompts
After adding the server and restarting your client, try asking your AI assistant:
Short clip (wait-first)
"Use SpeechWeave to transcribe
/Users/me/recordings/standup.mp3and summarize action items."
The assistant will call transcribe_file with the absolute path and summarize the returned transcript.
Long podcast (async + poll)
"Start a SpeechWeave job for
https://cdn.example.com/three_hour_podcast.mp3, then check back until it completes."
The assistant will call start_job_url, then periodically call get_job_status until the status reaches completed.
Translate to subtitles (wait-first)
"Translate
/Users/me/recordings/spanish_interview.mp3into English SRT subtitles using SpeechWeave."
The assistant will call transcribe_file with task: "translate" and response_format: "srt".
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceMCP server for offline speech-to-text and speaker diarization, enabling AI agents to transcribe audio locally without cloud APIs.3MIT
- AlicenseAqualityAmaintenanceMCP server for audio transcription using local faster-whisper or OpenAI Whisper API, enabling multilingual transcription with optional GPT post-processing.3MIT
- Alicense-qualityDmaintenanceMCP server for audio transcription with speaker diarization. Transcribes MP3/WAV files using Faster-Whisper and pyannote.audio, outputs markdown with speaker labels, timestamps, summaries, and action items.1MIT
- AlicenseAqualityCmaintenanceLocal, private audio transcription MCP server enabling AI agents to transcribe audio files entirely on-device without uploading data.3MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/speechweave/speechweave-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server