Transcribe Audio and Video for LLM Interaction
A Transcribe.com MCP server for AI-driven audio transcription - fast, no local ASR setup, 100+ languages, speaker separation.
Why it matters
Enable LLMs to understand and interact with the content of audio and video files by providing fast, high-quality transcriptions. This asset bridges the gap between spoken word and text-based AI.
Outcomes
What it gets done
Transcribe audio/video files and voice notes quickly.
Extract text content with word-level timestamps and speaker separation.
Store and manage transcriptions via Transcribe.com.
Facilitate LLM interaction with transcribed content.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-transcribe | bash Capabilities
Tools your agent gets
Converts audio to text and returns the text immediately using temporary credits.
Returns your account balance.
Returns the content of completed transcriptions with optional filtering and search.
Renames or deletes transcriptions in your Transcribe.com account.
Overview
Transcribe MCP Server
A Transcribe.com MCP server letting an AI assistant transcribe audio from URLs or local files, with speaker separation, 100+ language support, and balance/transcription management tools. Use when an AI assistant needs to transcribe audio without local ASR setup; keep the private MCP integration URL secure and check balance before large batches since transcription consumes credits.
What it does
Transcribe MCP connects an AI assistant (Claude, Windsurf, Cursor, and others) to a Transcribe.com account so it can automate audio transcription tasks directly. It's designed to be fast, lightweight, and LLM-friendly - no local ASR models to install or Python packages to fight with, with results returned in seconds. Transcription quality covers noisy audio, over 100 supported languages, word-level timestamps, and speaker separation, with a wide variety of input formats supported out of the box, cloud storage for audio notes and records, and team-based collaboration via Transcribe.com's teams feature. The Local Server variant can add local files (by filesystem path) for transcription, in addition to remote URLs, and return the result to the assistant.
Four tools are exposed, with more added over time: convert-to-text converts audio to text and returns it immediately, consuming account time credits - the remote server requires a publicly-accessible URL, while the Local Server accepts either a URL or a local filesystem path; get-balance returns the account's remaining balance; read-transcriptions returns the content of already-completed transcriptions with optional filtering or search; and update-transcription renames or deletes transcriptions stored in the account.
When to use - and when NOT to
Use this when an AI assistant needs to transcribe audio - from a public URL or a local file - directly as part of a workflow, without setting up local speech-recognition infrastructure.
The private MCP integration URL (obtained from the Transcribe.com online editor's Automation popup) must be stored securely and never shared, since it authenticates the connection to the account. convert-to-text consumes account time credits per use, so balance should be checked with get-balance before running large batches.
Inputs and outputs
Input is an audio file, either as a publicly-accessible URL (required for the remote server) or a local filesystem path (Local Server only). Output is the transcribed text, with word-level timestamps and speaker separation where applicable, retrievable later via read-transcriptions.
How to install
For Claude Desktop, sign in to the Transcribe online editor to get a private MCP integration URL, then download the pre-built MCPB bundle and either double-click it for one-click installation or install it manually via Settings > Extensions > Install Extension, pasting the private URL when prompted. For other assistants, install Node.js and Git first (verify with node --version and npx --version), then add the Local Server via your assistant's settings using the server config snippet - note the source's own example snippet nests an args key inside another args array, which looks like a documentation typo rather than valid JSON; the intent is to run npx -y github:transcribe-app/mcp-transcribe with MCP_INTEGRATION_URL set to your private URL as an environment variable. If installation fails with a missing MCP_INTEGRATION_URL error, re-copy the private URL from the Automation popup and set it as that environment variable; if the extension won't install, confirm Claude Desktop is up to date and that node is on your PATH.
Who it's for
Users who want an AI assistant to transcribe audio - from URLs or local files - directly within a conversation, without running local speech-recognition models.
{
"key": "transcribe-local",
"command": "npx",
"args": [
"args": ["-y", "github:transcribe-app/mcp-transcribe"],
],
"env": {
"MCP_INTEGRATION_URL": "<your-MCP-integration-URL>"
}
}
Source README
Transcribe MCP
Automate your transcriptions with AI.
Website
About
Transcribe MCP instantly connects your account to assistants like Claude, Windsurf, Cursor, and more so they can automate tasks on your behalf. The Local Server can add local files for transcription and return result to your Assistant in seconds.
Features
- โก Fast, lightweight and LLM-friendly. No special ASR models needed, no setup and fighting python packages, results in seconds.
- ๐ High-quality transcriptions. Works with noisy audio, over 100 languages supported, featuring word-level timestamps and speaker separation.
- ๐ Wide variety of formats out-of-the-box and Cloud storage for your audio notes and records.
- ๐ฅ Collaboration support via Transcribe.com teams feature
๐ Local installation: Claude Desktop
๐น Get your private MCP integration URL
- Sign in to the Transcribe online editor
- Copy your private URL from Automation popup
๐น Download pre-built MCP Bundle (MCPB): Click Here
๐ฆ The MCPB includes:
- โ One-click installation in Claude Desktop
- โ Secure environment variable configuration
- โ Automatic dependency management
- โ Built-in error handling and debugging
- โ The MCPB file is automatically updated for the latest features and fixes
Option 1: Double-Click Installation (Recommended)
- Double-click the .mcpb file
- Claude Desktop will automatically install the extension
- Follow the configuration prompts
Option 2: Manual Installation
- Open Claude Desktop
- Go to Settings โ Extensions
- Click "Install Extension" and select the .mcpb file
Configuration
During installation, you'll be prompted to configure MCP integration URL. Paste your private URL.
๐ Local installation: Other assistants
๐น Get your private MCP integration URL
- Sign in to the Transcribe online editor
- Copy your private URL from Automation popup
๐น Before installing the server, ensure you have Node.js and Git
- Download from: https://nodejs.org/
- Verify Node with: node --version
- Verify NPX with: npx --version
๐น Add Local Server via your assistant settings and use this snippet for server setup:
{
"key": "transcribe-local",
"command": "npx",
"args": [
"args": ["-y", "github:transcribe-app/mcp-transcribe"],
],
"env": {
"MCP_INTEGRATION_URL": "<your-MCP-integration-URL>"
}
}
Configuration
Replace <your-MCP-integration-URL> with your private URL.
โก Available Tools
List of tools is expanded with each new version.
1. convert-to-text: converts audio to text and returns the text immediately.
- Note: This tool use your time credits.
- Note: Remote server expect public-accessible URL, Local Server can use both URL and a path to local file in your file system.
2. get-balance: returns balance of your account.
3. read-transcriptions: returns content of ready transcriptions with optional filtering/search.
4. update-transcription: renames or deletes transcriptions in your account at Transcribe.com
๐ก Security Notes
- Private URL: Store your private URL securely, do not share it with others
โ ๏ธ Troubleshooting
"MCP_INTEGRATION_URL environment variable is required"
- Sign in to the Transcribe online editor
- Copy your private URL from Automation popup
- Add it as server's "MCP_INTEGRATION_URL" environment variable in your AI assistant settings
Extension Won't Install
- Ensure you have the latest Claude Desktop version
- Check that
nodeis installed and in your PATH
FAQ
Common questions
Discussion
Questions & comments ยท 0
Sign In Sign in to leave a comment.