Subdownload MCP Server

MCP proxy for SubDownload — YouTube knowledge base for AI agents

Remote serverstreamable-http

What is the Subdownload MCP MCP server?

MCP proxy for SubDownload — YouTube knowledge base for AI agents. That is what the subdownload mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

SubDownload exposes YouTube as an MCP-native data source. Connect once via OAuth and your AI agent gets tools to summarize videos, fetch full transcripts (including videos without captions, via AI ASR), search channels and playlists, and save everything into a per-user knowledge base for cross-session recall.

The tools it exposes

The server publishes 13 tools. What each one is for:

  • search_youtube — Keyword search across YouTube
  • fetch_video_info — Video metadata (title, channel, duration, view count)
  • fetch_transcript — Full transcript with timestamps
  • transcribe_video — Generate a transcript with AI ASR for videos that have no captions
  • get_asr_task — Poll an in-progress AI transcription job
  • resolve_channel — Look up a channel by handle, URL, or ID
  • list_channel_videos — List videos on a channel
  • get_channel_latest_videos — Latest videos for a channel
  • search_channel_videos — Search within a single channel
  • list_playlist_videos — List the contents of a playlist
  • save_to_library — Save a video summary or transcript to your personal knowledge base
  • list_library — Browse your saved knowledge base

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: SUBDOWNLOAD_API_KEY, YOUR_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Subdownload MCP's toolset — search_youtube, fetch_video_info, fetch_transcript and 10 more — is a fair guide to whether it matches your workflow. It is maintained by subdownload; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Subdownload MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Subdownload MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
search_youtubeKeyword search across YouTube
fetch_video_infoVideo metadata (title, channel, duration, view count)
fetch_transcriptFull transcript with timestamps
transcribe_videoGenerate a transcript with AI ASR for videos that have no captions
get_asr_taskPoll an in-progress AI transcription job
resolve_channelLook up a channel by handle, URL, or ID
list_channel_videosList videos on a channel
get_channel_latest_videosLatest videos for a channel
search_channel_videosSearch within a single channel
list_playlist_videosList the contents of a playlist
save_to_librarySave a video summary or transcript to your personal knowledge base
list_libraryBrowse your saved knowledge base
get_library_itemFetch a single saved item

How to install the Subdownload MCP MCP server

{
  "mcpServers": {
    "subdownload": {
      "url": "https://api.subdownload.com/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SUBDOWNLOAD_API_KEYCredential the server authenticates with.Yes
YOUR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Subdownload MCP to search youtube.
  • Use Subdownload MCP to fetch video info.
  • Use Subdownload MCP to fetch transcript.

Frequently asked questions

It connects Subdownload MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (search_youtube, fetch_video_info, fetch_transcript, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Subdownload MCP directly.