youtube-mcp
Provides tools for inspecting and managing a creator-owned YouTube channel, including reading video metadata, statistics, analytics (traffic sources, search terms, audience retention), and previewing/applying metadata updates via YouTube Data API v3 and YouTube Analytics API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@youtube-mcpshow my channel's top videos from last month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
YouTube MCP
A safe, local-first Model Context Protocol server for inspecting and managing a creator-owned YouTube channel.
@fullstackcraftllc/youtube-mcp uses Google's official YouTube Data API v3 and YouTube Analytics API. It does not scrape YouTube, download videos, send telemetry, or provide a hosted intermediary.
Features
Inspect your channel and page through its uploads.
Read owned-video metadata and public statistics.
Analyze channel/video performance, traffic sources, YouTube search terms, and audience retention.
Preview exact title, description, tag, and category changes.
Apply only an unexpired reviewed preview after rechecking ownership and remote state.
Maintain separate readonly and manage OAuth authorizations in named local profiles.
Version 0.1 intentionally excludes uploads, deletes, thumbnails, visibility, comments, playlists, monetization, public-channel research, transcripts, and HTTP hosting.
Related MCP server: yt-fetch
Requirements
Node.js 22 or newer.
A creator-owned YouTube channel.
Your own Google Cloud project and Desktop OAuth client.
Follow Google Cloud setup before logging in. Never commit the downloaded OAuth client JSON.
Authorize a profile
Readonly analytics:
npx -y @fullstackcraftllc/youtube-mcp@0.1.0 auth login \
--profile vannacharm \
--mode readonly \
--client-secrets /absolute/path/to/client_secret.jsonMetadata management uses a separate token and explicit extra permission:
npx -y @fullstackcraftllc/youtube-mcp@0.1.0 auth login \
--profile vannacharm \
--mode manage \
--client-secrets /absolute/path/to/client_secret.jsonIf Google exposes multiple channels, repeat the command with --channel-id <id> after the CLI prints the valid choices.
Check configuration without exposing credentials:
npx -y @fullstackcraftllc/youtube-mcp@0.1.0 auth status --profile vannacharm --mode readonly
npx -y @fullstackcraftllc/youtube-mcp@0.1.0 doctor --profile vannacharm --mode readonlyMCP client configuration
Codex, readonly:
codex mcp add youtube \
-- npx -y @fullstackcraftllc/youtube-mcp@0.1.0 serve --profile vannacharm --mode readonlyCodex, manage mode as a separately named server:
codex mcp add youtube-manage \
-- npx -y @fullstackcraftllc/youtube-mcp@0.1.0 serve --profile vannacharm --mode manageClaude Desktop:
{
"mcpServers": {
"youtube": {
"command": "npx",
"args": [
"-y",
"@fullstackcraftllc/youtube-mcp@0.1.0",
"serve",
"--profile",
"vannacharm",
"--mode",
"readonly"
]
}
}
}The server starts even if authorization is missing so the client can call youtube_get_auth_status. Other tools return AUTH_REQUIRED until the selected profile and mode are authorized.
Safe metadata updates
There is no direct update tool. The workflow is:
Call
youtube_preview_video_updatewith one or more proposed fields.Review the complete before/after diff, video ID, channel ID, expiry, and hash.
Call
youtube_apply_video_updatewith the preview ID, hash, and exact video ID.
Apply re-fetches current metadata and fails if anything changed since preview. YouTube receives a complete writable snippet so omitted fields are preserved. A preview expires after ten minutes and is consumed after one apply attempt.
See the complete tool reference, privacy and deletion behavior, and threat model.
Other CLI commands
youtube-mcp profiles list
youtube-mcp auth revoke --profile vannacharm --mode readonly
youtube-mcp auth revoke --profile vannacharm --mode manage
youtube-mcp --help
youtube-mcp --versionLocal development
git clone https://github.com/FullStackCraft/youtube-mcp.git
cd youtube-mcp
npm install
npm run release:checkRun locally from an MCP client with:
node /absolute/path/to/youtube-mcp/dist/index.js serve --profile vannacharm --mode readonlyCompliance and affiliation
Use of this software is subject to the YouTube Terms of Service, YouTube API Services Terms of Service, and Google Privacy Policy.
YouTube and Google are trademarks of Google LLC. This independent project is not affiliated with, sponsored by, or endorsed by YouTube or Google.
License
MIT © Full Stack Craft LLC.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/FullStackCraft/youtube-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server