Speechmatics MCP server. Transcribe audio and video with Speechmatics speech-to-text from Claude and any MCP client.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"speechmatics": {
"url": "https://speechmatics.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
speechmatics_list_jobs | read | List jobs List your transcription jobs most-recent-first, each with its status, source data name, and audio duration, with optional pagination and deleted-job filters. |
speechmatics_get_job | read | Get job Fetch a single job's full details and current status (running, done, rejected, deleted, or expired) so you can poll until the transcript is ready. |
speechmatics_get_transcript | read | Get transcript Retrieve a completed job's transcript as plain text, SRT subtitles, or structured json-v2 with word timings, speaker labels, translations, and summaries. |
speechmatics_get_job_log | read | Get job log Get a job's plain-text processing log, which is the quickest way to diagnose why a job was rejected or produced unexpected output. |
speechmatics_get_usage | read | Get usage Report account usage statistics such as transcription minutes consumed over a chosen date range for cost tracking and reporting. |
speechmatics_transcribe_url | write | Transcribe url Submit a publicly reachable audio or video URL for asynchronous speech-to-text transcription with optional diarization, custom vocabulary, translation, and summarization, returning a job id to poll. |
speechmatics_delete_job | write | Delete job Permanently delete a job and its transcript, optionally forcing deletion while the job is still running. |
speechmatics_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter. | |
speechmatics_upgrade | Upgrade to Pro (unlimited) Subscribe to the Pro plan for UNLIMITED Speechmatics tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.