Skip to main content
Glama
TranscriptFetch

Social Media Video Transcripts

Official

TranscriptFetch MCP Server

A Model Context Protocol server that gives any MCP client (Claude Desktop, Cursor, and others) access to the TranscriptFetch API: fetch transcripts from YouTube, TikTok, Instagram and direct media file URLs, search videos, enumerate channels and playlists, and check your credit balance.

Runs locally over stdio and calls the TranscriptFetch API with your key. Prefer a hosted, remote server? Point your client at https://transcriptfetch.com/mcp instead (OAuth or API key). The hosted server waits inline for short-form AI transcription, so no polling is needed there.

Tools

Tool

What it does

get_transcript

Transcript for a video. YouTube, TikTok, Instagram, or a direct media URL. Set ai_fallback: true to transcribe the audio when no captions exist (typically ~30 seconds for short videos, longer for long ones)

search_videos

Search YouTube by keyword (YouTube only)

list_channel_videos

List a channel's videos (handle, ID, or URL)

list_playlist_videos

List a playlist's videos (ID or URL)

get_credits

Remaining credit balance for the key. Never billed

Each successful fetch costs 1 credit. Failed, blocked and empty results are never charged, which matters on short-form video where many clips have no speech at all. Get a key at the dashboard. Accounts start with 100 free credits and are topped back up to 100 at the start of each month.

Related MCP server: YouTube Transcript MCP Server

Install

No install needed. Run it on demand with npx:

TRANSCRIPTFETCH_API_KEY=tf_live_... npx -y transcriptfetch-mcp

Or install globally:

npm install -g transcriptfetch-mcp

Requires Node 18+.

Run from source

git clone https://github.com/TranscriptFetch/mcp-server
cd mcp-server && npm install && npm run build

Then point your client at the built entrypoint with "command": "node" and "args": ["/absolute/path/to/mcp-server/dist/index.js"].

Client configuration

Claude Desktop

Add this to claude_desktop_config.json (Settings then Developer then Edit Config):

{
  "mcpServers": {
    "transcriptfetch": {
      "command": "npx",
      "args": ["-y", "transcriptfetch-mcp"],
      "env": { "TRANSCRIPTFETCH_API_KEY": "tf_live_..." }
    }
  }
}

Cursor

Add the same block under mcpServers in your Cursor MCP settings.

Restart the client, and the five tools appear.

Example

Once connected, ask your assistant naturally:

Get the transcript for https://youtu.be/aircAruvnKk and summarize the key points.

Search YouTube for "how transformers work" and list the top 5 videos.

List the latest videos from @lexfridman and pull the transcript of the newest one.

How many TranscriptFetch credits do I have left?

The assistant picks the matching tool and works from the returned transcript or video list.

Configuration

Env var

Required

Default

TRANSCRIPTFETCH_API_KEY

yes

none

TRANSCRIPTFETCH_BASE_URL

no

https://transcriptfetch.com

Docker

The server speaks MCP over stdio, so there is no port to expose. -i is required: without an attached stdin the transport closes immediately and the container looks like it crashed.

docker build -t transcriptfetch-mcp .
docker run --rm -i -e TRANSCRIPTFETCH_API_KEY=tf_live_... transcriptfetch-mcp

License

MIT

Available Tools

5 tools
get_creditsAInspect

Check the remaining TranscriptFetch credit balance for the current API key. Free: this call is never billed.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the burden. It discloses a key behavioral trait: 'this call is never billed.' It also clarifies it applies to 'the current API key.' It does not detail response format or error behavior, but for a zero-parameter balance check, this is reasonable.

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?

Two short sentences: the first states the core purpose, the second adds a valuable cost note. No filler or redundancy. Each sentence earns its place.

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?

For a simple, zero-parameter tool, the description is sufficient. It states what it does and that it is free. It does not describe the return format or edge cases, but no output schema is provided, and the simplicity of the tool makes that less critical. It is complete enough for an agent to select and invoke correctly.

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?

The tool has zero parameters, and the schema coverage is 100% (empty schema). The description adds no parameter meaning because none exist. For 0-parameter tools, the baseline is 4, and the description does not need to compensate.

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 function: checking the remaining TranscriptFetch credit balance. The verb 'check' and resource 'credit balance' are specific, and this tool is distinctly different from sibling tools like get_transcript or search_videos, which fetch video data.

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—you would check credits before making billed calls—but does not explicitly state when to use it versus alternatives or any exclusions. The context is clear enough for a simple utility, but it lacks direct guidance on timing or prerequisites.

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

get_transcriptAInspect

Fetch the full transcript for a video. Accepts a YouTube video ID or URL, plus TikTok, Instagram, X (Twitter), and Facebook video URLs and direct media file URLs. If no transcript comes back, the result says whether captions definitively do not exist (aiFallback.captionsUnavailable) and whether transcribing the audio would still work (aiFallback.available). When it does, call this tool again with ai_fallback: true.

ParametersJSON Schema
NameRequiredDescriptionDefault
videoYesVideo ID or URL, YouTube (dQw4w9WgXcQ, youtu.be/...), TikTok, Instagram, X, Facebook, or a direct media file URL.
ai_fallbackNoSkip captions and transcribe the audio with AI instead. Use this only after a previous call reported aiFallback.available, it starts an async job (1 credit on delivery) that takes 1-3 minutes.

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations, the description discloses important behavioral traits: the result distinguishes between 'captions definitively do not exist' and 'transcribing audio would still work' via the aiFallback object. It also reveals that ai_fallback starts an async job costing 1 credit and taking 1-3 minutes. This goes well beyond a simple 'get transcript' statement and helps the agent anticipate edge cases.

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 a single dense paragraph that front-loads the purpose and then details formats and fallback behavior. It is slightly redundant with the schema but remains concise for the amount of context it provides.

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?

Despite lacking an output schema, the description explains key result fields (captionsUnavailable, available) and the async fallback process, which covers the main edge cases. It does not describe the full transcript structure, but for a two-parameter tool this is reasonable. The absence of annotations is compensated by the description's rich behavioral detail.

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 input schema already describes both parameters thoroughly (video formats, ai_fallback behavior, cost, timing). The description largely restates this information without adding new parameter-level meaning. Baseline is 3 due to 100% schema coverage, and this description does not elevate it.

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 identifies the tool's function ('Fetch the full transcript for a video') and lists accepted input formats (YouTube ID/URL, TikTok, Instagram, X, Facebook, direct media URLs). This distinguishes it from sibling tools like search_videos or list_channel_videos, which focus on discovery rather than content retrieval.

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?

Provides explicit usage guidance for the fallback flow: if no transcript returns and aiFallback.available is true, call the tool again with ai_fallback: true. It does not explicitly compare to alternative tools, but the description makes the primary use case clear and the fallback condition is actionable.

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

list_channel_videosAInspect

List recent videos for a YouTube channel. Accepts a channel handle (@name), channel ID (UC...), or URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1-50). Defaults to 5.
channelYesChannel handle, ID, or URL.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It adds that the tool accepts a channel handle, ID, or URL, which is useful behavioral context. However, it does not mention other behaviors such as result ordering (beyond 'recent'), pagination, rate limits, or error handling. For a read-only listing tool, this is acceptable but not fully transparent.

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 sentences long, front-loaded with the core action ('List recent videos'), and every phrase earns its place. It avoids unnecessary detail, making it easy for an agent to quickly parse the tool's purpose.

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?

For a simple listing tool with full schema coverage and no output schema, the description is adequately complete. It specifies the action, the resource, and accepted input formats. It could optionally mention the default limit or suggest using sibling tools for playlists, but these are not critical for using the tool correctly.

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%: both parameters (channel and limit) are described in the input schema. The description repeats the channel format info already present in the schema and adds no new meaning for the limit parameter. Since the schema already provides full parameter semantics, a baseline score of 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 states the verb 'List' and the resource 'recent videos for a YouTube channel', making the tool's function immediately obvious. It also specifies the three accepted input formats (handle, ID, or URL), which helps differentiate it from sibling tools like list_playlist_videos (playlists vs channels) and search_videos (general search vs channel-specific listing).

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: if you need recent videos from a specific channel, this is the tool. However, it does not explicitly mention when to use it over alternatives (e.g., list_playlist_videos for playlists, search_videos for broader search) or provide any exclusion criteria. The guidance is not misleading, but it's only implied, not stated.

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

list_playlist_videosAInspect

List the videos in a YouTube playlist. Accepts a playlist ID or URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1-50). Defaults to 5.
playlistYesPlaylist ID or URL.

TDQS

A3.7/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 disclose behavioral traits, but it only states the action and input. It omits details like the default limit (5), pagination, error behavior, or return format, leaving the agent with little insight into the tool's runtime behavior.

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 is front-loaded with the action and resource. It is concise with no unnecessary words, and every phrase contributes to understanding the tool's purpose.

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 list tool with two parameters, the description is adequate but incomplete. It does not mention return values (no output schema) or behavioral details, and the absence of annotations increases the burden on the description to provide context, which it only partially fulfills.

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 input schema provides complete descriptions for both parameters (playlist and limit), so the description adds no additional semantic value beyond what the schema already provides. The phrase 'Accepts a playlist ID or URL' merely restates the schema's parameter description.

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 ('List') and resource ('videos in a YouTube playlist'), using a specific verb that distinguishes it from siblings like list_channel_videos. It also mentions accepting a playlist ID or URL, further clarifying its scope.

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 implicitly conveys when to use the tool: when you have a playlist ID or URL and want its videos. It does not explicitly name alternatives or exclusions, but the purpose is clear enough that an agent can infer the appropriate context without ambiguity.

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

search_videosAInspect

Search YouTube for videos matching a query. Returns titles, IDs, and URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1-50). Defaults to 5.
queryYesSearch keywords.

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It states that the tool returns titles, IDs, and URLs, which is useful, but it does not disclose any other behavioral traits such as sorting, pagination, rate limits, or whether results are limited by relevance. This is a minimal but not misleading description.

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 extremely concise: two short sentences that immediately convey purpose and return values. Every word is functional, with no redundancy or unnecessary content.

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?

For a simple two-parameter search tool with no output schema, the description adequately covers the main purpose and return format. However, it lacks guidance on when to use it versus sibling tools, which slightly reduces completeness.

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 input schema provides full descriptions for both parameters (query and limit), covering 100% of the schema. The description adds no additional parameter-level detail, so the baseline of 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 states the tool's function with a specific verb ('Search') and resource ('YouTube'), and specifies the scope ('videos matching a query'). It implicitly distinguishes from siblings like list_channel_videos and get_transcript, which focus on specific retrieval rather than general search.

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

Usage Guidelines2/5

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

No explicit guidance is provided on when to use this tool versus the sibling tools. The description does not mention alternatives, exclusions, or scenarios like 'use list_channel_videos to get videos from a specific channel.' The usage context must be inferred.

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 updatesv0.1.0
    • First observedget_credits
    • First observedget_transcript
    • First observedlist_channel_videos
    • First observedlist_playlist_videos
    • First observedsearch_videos

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_transcript retrieves transcripts, search_videos finds videos by query, list_channel_videos and list_playlist_videos list videos from specific sources, and get_credits checks usage. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: get_transcript, search_videos, list_channel_videos, list_playlist_videos, get_credits. The naming is uniform and predictable.

Tool Count5/5

With 5 tools, the set is well-scoped for the server's purpose: finding videos and retrieving transcripts, plus a credits check. Each tool is necessary and there is no bloat or missing core functionality.

Completeness4/5

The domain is video transcript retrieval. The set covers discovery (search, channel, playlist) and retrieval (get_transcript) with a supporting credits check. Minor gap: no direct video metadata retrieval, but that is not essential for transcript-focused workflows.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables fetching YouTube video transcripts with Google OAuth 2.0 authentication. Supports both manual and auto-generated transcripts with optional timestamps from video URLs or IDs.
    -
  • F
    license
    B
    quality
    Not graded
    maintenance
    Enables extraction and processing of YouTube video transcripts from individual videos, channels, and playlists. Supports transcript search, batch processing, multiple output formats (JSON, text, SRT, VTT), and bulk operations across multiple videos.
    11
    34
    -
  • A
    license
    A
    quality
    A
    maintenance
    An MCP server (stdio + HTTP/SSE) that fetches video transcripts/subtitles via yt-dlp, with pagination for large responses. Supports YouTube, Twitter/X, Instagram, TikTok, Twitch, Vimeo, Facebook, Bilibili, VK, Dailymotion. Whisper fallback — transcribes audio when subtitles are unavailable (local or OpenAI API). Works with Cursor and other MCP host
    8
    19
    MIT

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/TranscriptFetch/mcp-server'

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