Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables Claude Code to transcribe audio and video files using the Speechmatics Batch API, with support for speaker diarization, batch processing, and searching transcripts.

README.md

Speechmatics MCP Server for Claude Code

!Folder of media files transforming through waveforms into text transcripts

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'" ``

Requirements

Installation

1. Install ffmpeg

# macOS
brew install ffmpeg

# Ubuntu/Debian
sudo apt install ffmpeg

# Windows
winget install ffmpeg

2. Clone and install dependencies

git clone https://github.com/ArchieMcM234/speechmatics_claude_code_mcp.git
cd speechmatics_claude_code_mcp
uv sync

3. 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 | |-----------|------|---------|-------------| | file_path | string | required | Absolute path to the media file | | accuracy | string | "standard" | "standard" or "enhanced" (enhanced costs more but is more accurate) | | diarize | boolean | false | Enable speaker diarization to identify different speakers | | with_timestamps | boolean | false | Include word-level timestamps (outputs JSON instead of TXT) | | force | boolean | false | Re-transcribe even if a transcript already exists |

transcribe_directory

Transcribe all media files in a directory with parallel processing.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | directory | string | required | Path to directory containing media files | | file_types | array | ["mp3", "mp4", "wav", ...] | File extensions to include | | accuracy | string | "standard" | "standard" or "enhanced" | | diarize | boolean | false | Enable speaker diarization | | with_timestamps | boolean | false | Include word-level timestamps | | force | boolean | false | Re-transcribe even if transcripts exist | | recursive | boolean | false | Search subdirectories | | max_concurrent | integer | 10 | Maximum parallel transcription jobs (1-50) |

get_transcript

Read an existing transcript file.

| Parameter | Type | Description | |-----------|------|-------------| | file_path | 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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.