What Is MCP (Model Context Protocol) — and Why YouTube Needs One

If you’ve spent any time around Claude in the last six months, you’ve probably bumped into the acronym MCP. It shows up in Claude Desktop’s settings, in agent framework docs, in Show HN posts. People talk about it like it’s a foregone conclusion — of course you have an MCP server for that.

If you haven’t worked through what MCP actually is, that’s confusing. This post is the explainer I wish existed when I started building SubDownload: what MCP is, what it isn’t, and why YouTube specifically is the kind of source that desperately needs one.

MCP, in one paragraph

MCP — the Model Context Protocol — is a specification for how an AI client (Claude Desktop, Claude Code, Cursor, and a growing list of others) talks to external tools and data sources. Instead of every AI app shipping its own ad-hoc plugin system, MCP defines a standard way for the client (the thing you talk to) to discover and call into a server (the thing that knows how to do something — fetch a transcript, query a database, search a codebase).

The model itself doesn’t change. Claude is still Claude. What changes is what Claude can reach: any tool that speaks MCP becomes available, the same way a webpage becomes available to a browser.

What MCP is not

A few common misreadings worth clearing up:

What MCP gives you, practically

Three properties that matter for anyone trying to extend an AI agent’s reach:

The net effect: the wall between “what your AI agent can do” and “what your tools can do” gets thinner. Any system you can wrap in an MCP server becomes part of the agent’s accessible context.

Why YouTube is a hard case for AI agents

Now flip the question: why does YouTube specifically need an MCP server?

Because YouTube is one of the largest knowledge sources on the internet, and it’s effectively invisible to a vanilla AI agent.

Think about the channels by which Claude reads inputs today:

Now look at YouTube:

So a vanilla Claude can read every blog, every PDF, and every doc you depend on, then go silent the moment your input is on YouTube. Without an MCP server (or some other equivalent bridge), there’s no way to fix this from the client side.

What an MCP server for YouTube looks like

This is the gap I built SubDownload to fill. The MCP server at api.subdownload.com/mcp exposes a tool surface roughly like:

Once the MCP server is connected, Claude doesn’t need YouTube to be “supported” — it just calls the tools. The agent sees video content as normal text-shaped context, the same way it would see a fetched webpage.

The setup walkthrough is in How to give Claude access to YouTube videos (via MCP). The OAuth flow uses standard MCP auth, so Claude Desktop, Claude Code, Cursor, and other MCP-aware clients all work without separate plumbing per client.

The non-MCP paths (when MCP isn’t the right fit)

Not every workflow needs MCP. Two other paths reach the same backend:

The decision tree is: if you’re using Claude Desktop / Claude Code / Cursor and want video tools to “just be there,” use MCP. If you’re scripting, use the REST API. If you want one-command install over MCP, use Skills.

Where this is going

The interesting thing about MCP is that it makes “AI agent reads X” composable in a way it wasn’t before. Anyone can stand up an MCP server for the data source they care about — your CRM, your wiki, your video library, your inbox — and any MCP-aware client suddenly has access. We’re still early in the curve where most data sources don’t have MCP servers; that’s the gap that gets closed over the next few years.

YouTube is a useful first case because so much working knowledge is locked there, and it’s one of the few large sources without a clean third-party text API. SubDownload’s job is to close that specific gap.

Try it

Paste any YouTube link into subdownload.com — the basic transcript and summary work without an account. For the MCP integration, see How to give Claude access to YouTube videos, or the broader launch announcement for the full product picture.

If you’re building an MCP server of your own and want to compare notes, ping me at contact@subdownload.com.