Speechmatics MCP Server
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., "@Speechmatics MCP ServerTranscribe ~/meetings/team-sync.mp4 with speaker diarization"
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.
Speechmatics MCP Server for Claude Code

An MCP (Model Context Protocol) server that gives Claude Code the ability to transcribe audio and video files using the Speechmatics Batch API.
What This Does
Once installed, Claude Code gains access to transcription tools that allow you to:
Transcribe single files - Convert any audio/video file to text
Batch transcribe directories - Process entire folders of media files in parallel
Speaker diarization - Identify different speakers (S1, S2, etc.) in conversations
Search transcripts - Use Claude's native Grep tool to search across all your transcripts
Example usage in Claude Code:
"Transcribe the meeting recording at ~/Downloads/meeting.mp4"
"Transcribe all the podcasts in ~/Podcasts with speaker identification"
"Search my transcripts for mentions of 'quarterly budget'"Related MCP server: AssemblyAI MCP Server
Requirements
Python 3.11+
ffmpeg (for audio duration detection)
Speechmatics API key (free tier available)
Installation
1. Install ffmpeg
# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt install ffmpeg
# Windows
winget install ffmpeg2. Clone and install dependencies
git clone https://github.com/ArchieMcM234/speechmatics_claude_code_mcp.git
cd speechmatics_claude_code_mcp
uv sync3. Register the MCP server
Add to your Claude Code config file (~/.claude.json):
{
"mcpServers": {
"transcription": {
"command": "uv",
"args": [
"--directory",
"/path/to/speechmatics_claude_code_mcp",
"run",
"python",
"server.py"
],
"env": {
"SPEECHMATICS_API_KEY": "your-api-key-here"
}
}
}
}Replace /path/to/speechmatics_claude_code_mcp with the actual path where you cloned the repo.
Note: Setting the API key in the env block is all you need. You don't need to export it separately or create a .env file.
4. Restart Claude Code
The transcription tools will now be available.
Available Tools
transcribe_file
Transcribe a single audio/video file.
Parameter | Type | Default | Description |
| string | required | Absolute path to the media file |
| string |
|
|
| boolean |
| Enable speaker diarization to identify different speakers |
| boolean |
| Include word-level timestamps (outputs JSON instead of TXT) |
| boolean |
| Re-transcribe even if a transcript already exists |
transcribe_directory
Transcribe all media files in a directory with parallel processing.
Parameter | Type | Default | Description |
| string | required | Path to directory containing media files |
| array |
| File extensions to include |
| string |
|
|
| boolean |
| Enable speaker diarization |
| boolean |
| Include word-level timestamps |
| boolean |
| Re-transcribe even if transcripts exist |
| boolean |
| Search subdirectories |
| integer |
| Maximum parallel transcription jobs (1-50) |
get_transcript
Read an existing transcript file.
Parameter | Type | Description |
| string | Path to media file OR transcript file |
get_usage
Get Speechmatics API usage statistics for the current month. No parameters required.
Output Formats
Transcripts are saved alongside the original media file.
Plain text (default): filename.transcript.txt
# Transcribed: 2024-01-30T14:32:00Z
# Source: meeting.mp4
# Duration: 12:34
# Accuracy: standard
# Diarization: true
S1: Hello everyone, welcome to the meeting.
S2: Thanks for having me.
...JSON with timestamps: filename.transcript.json
{
"metadata": {
"source": "meeting.mp4",
"transcribed_at": "2024-01-30T14:32:00Z",
"duration_seconds": 754,
"accuracy": "standard",
"diarization": true
},
"transcript": "S1: Hello everyone...",
"words": [
{"word": "Hello", "start": 0.0, "end": 0.5, "confidence": 0.98}
]
}Searching Transcripts
After transcribing, Claude can use its native Grep tool to search across all transcripts:
"Search all transcripts in ~/meetings for mentions of 'project deadline'"
"Find where we discussed the budget in the Q4 recordings"License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/ArchieMcM234/speechmatics_claude_code_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server