Skip to main content
Glama

🎙️ FreeAudioToText MCP Server

An official Model Context Protocol (MCP) server for FreeAudioToText.com, enabling AI agents like DeepSeek, Claude, and Cursor to instantly transcribe any audio/video file or YouTube/TikTok URL into text with speaker diarization.

Our core transcription service is 100% free with unlimited usage. It runs on high-performance local Apple Silicon hardware via the Cloudflare Edge, providing ultra-fast inference with state-of-the-art accuracy across 90+ languages.

Related MCP server: Video Transcriber MCP Server

🛠️ Available Tools

This MCP server exposes the following tools to your AI assistant:

  • transcribe_audio: Uploads a local audio or video file (e.g., MP3, M4A, WAV, MP4) for transcription. Returns a unique job_id.

  • transcribe_from_url: Submits a YouTube or TikTok URL for extraction and transcription. Returns a job_id.

  • get_job_status: Checks if the submitted job_id is "pending" or "completed".

  • get_transcript: Retrieves the full generated transcript (with speaker labels like [SPK_0]) for a completed job.

  • generate_ai_report: Generates a deep LLM analysis report (Summary, Action Items, Outline, or Speaker Analysis) for your transcript.

🚀 Installation & Setup

Add the following to your MCP client configuration file (e.g., claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "freeaudiototext": {
      "command": "npx",
      "args": [
        "-y",
        "freeaudiototext-mcp"
      ]
    }
  }
}

Using Smithery CLI

npx -y @smithery/cli install freeaudiototext-mcp --client cursor

🤖 Integration Examples

Example 1: Using with DeepSeek Models

Since this server follows the standard MCP specification, you can use any DeepSeek-compatible MCP client (like Cursor, Cline, or Roo Code) to combine our transcription with DeepSeek's powerful reasoning.

Just ask your DeepSeek-powered agent:

"Use the FreeAudioToText tool to transcribe /Users/myname/Downloads/board_meeting.m4a. Once it finishes, act as an executive assistant and use your DeepSeek-R1 reasoning to summarize the key decisions and output an action item list."

Example 2: Using with Claude

"I have an interview recording at https://youtube.com/watch?v=xxxx. Can you transcribe it from the URL and give me a detailed speaker-by-speaker outline?"

The agent will automatically:

  1. Call transcribe_audio or transcribe_from_url.

  2. Poll get_job_status until completion.

  3. Retrieve the text via get_transcript and perform the advanced analysis.

📜 License

MIT License. See LICENSE for more information.

Available Tools

5 tools
generate_ai_reportA

Generates a deep AI structural analysis report (Summary, Action Items, Outline, or Speakers) for a completed transcript.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeYesThe type of analysis report to generate.
job_idYesThe unique job_id of the completed transcription job.

TDQS

A4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. The description only states the purpose and inputs, but fails to mention any behavior traits such as resource consumption, generation time, error conditions (e.g., if the transcript is not yet complete), or data retention. For a tool that generates reports, this lack of transparency could lead to incorrect expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that front-loads the action and resource, listing options concisely. No extraneous words; every part is necessary and informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple input schema (2 required fields with clear enum) and no output schema, the description provides adequate context for understanding the tool's function. Minor gaps: it does not describe the return format (e.g., text vs. structured data) or error handling, but these are secondary for a straightforward generation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and both parameters have descriptions. The description adds context by stating the transcript must be 'completed' for the job_id parameter and enumerates valid type values in the text. This adds meaningful guidance beyond the schema alone, though the schema already covers the basics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'generates' and the resource 'deep AI structural analysis report', listing specific report types (Summary, Action Items, Outline, Speakers). It unequivocally distinguishes the tool from sibling tools like transcribe_audio or get_transcript by specifying it operates on completed transcripts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description indicates the tool is meant for 'a completed transcript', giving clear context on when to use it. However, it does not explicitly mention when not to use it or provide alternatives (e.g., if the transcript is incomplete, use get_job_status first). This is a minor gap, but the instruction is clear enough for most agents.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_job_statusA

Checks the status of a transcription job using its job_id. Use this to poll until status is 'completed'.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesThe unique job_id returned by transcribe_audio or transcribe_from_url.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description adds value by indicating it is a polling tool and that it checks status. It lacks details on error handling or response format, which is acceptable for a simple status check.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the core action, and contains no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple single-parameter interface and no output schema, the description adequately covers the tool's behavior. It could mention the possible status values, but otherwise it is complete enough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the input schema already describes job_id well. The description does not add additional semantics beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: checking the status of a transcription job using its job_id. It is distinct from sibling tools like transcribe_audio and get_transcript.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use this for polling until status is 'completed', giving clear guidance on when and how to use the tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_transcriptA

Retrieves the full text transcript for a completed job, including speaker labels (diarization).

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYesThe unique job_id of the completed transcription job.

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It only states the retrieval of transcript with speaker labels, omitting behavioral details like error handling for incomplete jobs, authentication requirements, or idempotency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the key action and feature. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 parameter, no output schema), the description is mostly complete. However, it could optionally mention that the job must be completed or describe the output format since no output schema exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 100% coverage for the single parameter 'job_id' with a description. The tool description does not add additional meaning beyond the schema, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (retrieves), the resource (full text transcript for a completed job), and a key feature (speaker labels/diarization). It distinguishes well from sibling tools like 'transcribe_audio' and 'get_job_status'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage after a job is completed but does not explicitly state when to use or when not to use, nor does it reference alternatives. With siblings present, more explicit guidance would be helpful.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

transcribe_audioB

Uploads a local audio or video file to FreeAudioToText for transcription. Supported formats: MP3, M4A, WAV, MP4, MOV, etc. Returns a job_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
languageNoOptional language code (e.g., 'en', 'zh'). Defaults to 'auto'.
file_pathYesAbsolute local path to the audio or video file (e.g., /Users/name/Downloads/audio.mp3)

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavioral traits. It mentions upload and return of a job_id but lacks details on whether the operation is asynchronous, file deletion policies, authentication needs, rate limits, or response structure. This is insufficient for a mutation-like tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short (two sentences) and front-loaded with the main action. It covers essentials without fluff. Could be slightly improved by separating formats and return value for clarity, but it's efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, so the description should clarify the return value. It states 'Returns a job_id' but does not explain that the transcription is asynchronous or that job_id is used to poll status. Given siblings like get_job_status, the workflow is partially implied but could be more explicit.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for both parameters, so the description adds minimal extra meaning for parameters. The description does provide context about the overall action and supported formats, but not beyond what the schema already conveys. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies that the tool uploads a local audio/video file to FreeAudioToText for transcription and returns a job_id. It lists supported formats and distinguishes from siblings like transcribe_from_url (for URL transcription) and get_transcript (for retrieving results), giving a clear purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies that this tool is for local files, but it does not explicitly state when to use it versus alternatives like transcribe_from_url. There is no mention of prerequisites, file size limits, or when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

transcribe_from_urlA

Submits a YouTube or TikTok URL to FreeAudioToText for transcription. Returns a job_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
languageNoOptional language code (e.g., 'en', 'zh'). Defaults to 'auto'.
youtube_urlYesThe full URL of the YouTube or TikTok video.

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavior. It mentions asynchronous submission via 'returns a job_id' but lacks details on processing time, error handling, or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no extraneous information. It is efficient and front-loaded with the key action and result.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with 2 fully described parameters, the description is adequate but lacks mention of the asynchronous workflow (e.g., need to poll get_job_status). Sibling tools partially compensate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds minimal value beyond the schema, merely confirming the source is YouTube/TikTok and the service name. No additional parameter semantics are provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'submits' and the resource 'YouTube or TikTok URL to FreeAudioToText for transcription', distinguishing it from transcribe_audio which likely handles file uploads.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not explicitly guide when to use this tool versus alternatives like transcribe_audio. Usage is implied by the mention of URL, but no exclusions or direct comparisons are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv1.0.0
    • First observedgenerate_ai_report
    • First observedget_job_status
    • First observedget_transcript
    • First observedtranscribe_audio
    • First observedtranscribe_from_url

TDQS

A4/5.0
Disambiguation5/5

Each tool serves a distinct purpose: two input methods for transcription, status polling, transcript retrieval, and report generation. No ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case (transcribe_audio, get_job_status, etc.), making them predictable.

Tool Count5/5

Five tools cover the essential transcription workflow without being excessive or insufficient. The scope is well-suited for the server's purpose.

Completeness4/5

The tool set covers the core workflow (submit, poll, retrieve, analyze). Minor gaps like job cancellation or listing are absent but not critical for primary use.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/double2dev/freeaudiototext-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server