AI‑powered YouTube uploader—no CLI, no YouTube Studio, and no secrets ever shared with LLMs or third‑party apps and all free of cost! It includes OAuth2 authentication, token management, and video upload functionality.
- Upload videos to YouTube from MCP Client(Claude/Cursor/VS Code)
- OAuth2 authentication flow
- Access token and refresh token management
- Multi Channel Support
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/anwerj/youtube-uploader-mcp/master/scripts/install.sh)"
Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/anwerj/youtube-uploader-mcp/master/scripts/install.ps1" -OutFile "$env:TEMP\install.ps1"; PowerShell -NoProfile -ExecutionPolicy Bypass -File "$env:TEMP\install.ps1"
This single command will
- Help in downloading oAuth client secret files, if not downloaded,
- Download the MCP server,
- Set minimum required permission to run mcp server,
- Auto update Cluade Desktop config with youtube-uploader-mcp server and
- At last print exact MCP config for any other clients VS Code/Cursor/AnythingLLM etc.
[INFO] Detecting OS and architecture... [INFO] Detected OS/Arch: darwin/arm64 [INFO] Checking location of client secret file [INFO] If client_secret not downloaded yet, Please watch https://youtu.be/fcywz5FIUpM for very detailed steps to download [INFO] Client secret stored at: /Users/itclear/.config/youtube-uploader-mcp/client_secret_10000000000-lvgrjhofjbnd110eouaasaasdasdavapc.apps.googleusercontent.com.json [INFO] Installing anwerj/youtube-uploader-mcp (latest) [INFO] Downloading https://github.com/anwerj/youtube-uploader-mcp/releases/latest/download/youtube-uploader-mcp-darwin-arm64 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14.0M 100 14.0M 0 0 1734k 0 0:00:08 0:00:08 --:--:-- 3107k [INFO] Installed binary: /Users/itclear/youtube-uploader-mcp/youtube-uploader-mcp-darwin-arm64Integrate with Claude Desktop now? [y/N]: y [INFO] Claude config updated at: /Users/itclear/Library/Application Support/Claude/claude_desktop_config.json [INFO] If Claude is running, restart it to load the new MCP server.
Show VS Code/Cursor MCP config JSON now? [y/N]: y
[INFO] Add the following to your MCP config: "youtube-uploader-mcp": { "command": "/Users/itclear/youtube-uploader-mcp/youtube-uploader-mcp-darwin-arm64", "args": [ "-client_secret_file", "/Users/itclear/.config/youtube-uploader-mcp/client_secret_10000000000-lvgrjhofjbnd110eouaasaasdasdavapc.apps.googleusercontent.com.json" ], "env": {}, "disabled": false, "autoApprove": [] }
[INFO] Setup complete.
Please check Single Command Installation, proceed if you prefer manual installation.
Visit the Releases page and download the appropriate binary for your operating system:
youtube-uploader-mcp-linux-amd64
youtube-uploader-mcp-darwin-arm64
youtube-uploader-mcp-windows-amd64.exe
- etc.
You can use the latest versioned tag, e.g.,
v1.0.0
.
chmod +x path/to/youtube-uploader-mcp-<os>-<arch>
{
"mcpServers": {
"youtube-uploader-mcp": {
"command": "/absolute/path/to/youtube-uploader-mcp-<os>-<arch>",
"args": [
"-client_secret_file",
"/absolute/path/to/client_secret.json(See Below)"
]
}
}
}
To upload to YouTube, you must configure OAuth and get a client_secret.json file from the Google Developer Console.
➡️ Follow the guide in youtube_oauth2_setup.md for a step-by-step walkthrough.
main.go
: Entry point for the CLIyoutube/
: YouTube API integration (OAuth, video upload, config)tool/
: Command-line tools for authentication, token, and uploadhook/
,logn/
: Supporting packages