Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI assistants to control YouTube Live Streaming, including creating broadcasts, managing chat, and monitoring stream health via MCP tools.

README.md

YouTube Live MCP

MCP server for controlling YouTube Live Streaming from Claude Code, Claude Desktop, or any MCP client.

Create broadcasts, go live, manage chat, and monitor stream health — all through the Model Context Protocol.

What it does

This server wraps the YouTube Live Streaming API v3 and exposes it as MCP tools. Combined with obs-mcp, you get fully automated live streaming from your AI assistant.

Tools

Broadcasts (8 tools)

  • yt-create-broadcast — Create a new live broadcast
  • yt-list-broadcasts — List broadcasts (filter by status)
  • yt-get-broadcast — Get broadcast details
  • yt-update-broadcast — Update title, description, privacy
  • yt-delete-broadcast — Delete a broadcast
  • yt-bind-stream — Bind a video stream to a broadcast
  • yt-transition-broadcast — Go live, end broadcast (testing/live/complete)
  • yt-insert-cuepoint — Insert ad break during live

Streams (4 tools)

  • yt-create-stream — Create stream, get RTMP URL + key
  • yt-list-streams — List your streams
  • yt-get-stream — Get stream details + health
  • yt-delete-stream — Delete a stream

Chat (6 tools)

  • yt-list-chat-messages — Read live chat
  • yt-send-chat-message — Post to live chat
  • yt-delete-chat-message — Remove a message
  • yt-list-moderators — List chat moderators
  • yt-add-moderator — Add a moderator
  • yt-remove-moderator — Remove a moderator

Status (2 tools)

  • yt-get-broadcast-status — Broadcast lifecycle state
  • yt-get-stream-health — Real-time stream health

Videos

  • yt-search-videos — Search YouTube for videos by keyword. Params: query (required), maxResults (1–50, default 10), channelId (optional, restrict to one channel), order (relevance/date/viewCount/rating/title, default relevance). Returns { videoId, title, channelTitle, channelId, publishedAt, url, description } per result. Note: search.list costs 100 quota units per call (vs ~1 for list/get).

Prerequisites

  1. Node.js 18+
  2. Google Cloud project with the YouTube Data API v3 enabled
  3. OAuth2 credentials (Desktop application type)

Setting up Google Cloud

  1. Go to Google Cloud Console
  2. Create a project (or use an existing one)
  3. Enable the YouTube Data API v3
  4. Go to CredentialsCreate CredentialsOAuth 2.0 Client ID
  5. Application type: Desktop app
  6. Note your Client ID and Client Secret

Installation

Claude Desktop / Claude Code

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "youtube-live": {
      "command": "npx",
      "args": ["-y", "youtube-live-mcp@latest"],
      "env": {
        "YOUTUBE_CLIENT_ID": "your-client-id.apps.googleusercontent.com",
        "YOUTUBE_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Manual

npm install -g youtube-live-mcp
YOUTUBE_CLIENT_ID="..." YOUTUBE_CLIENT_SECRET="..." youtube-live-mcp

Authentication

On first run, the server opens your browser for Google OAuth consent. After authorizing, tokens are stored in ~/.youtube-live-mcp/tokens.json and refreshed automatically.

Required scope: https://www.googleapis.com/auth/youtube

Usage: Go Live in 7 Steps

With both youtube-live-mcp and obs-mcp installed:

1. yt-create-broadcast     → Create the YouTube event
2. yt-create-stream        → Get RTMP URL + stream key
3. obs-set-stream-settings → Configure OBS with RTMP details
4. yt-bind-stream          → Connect stream to broadcast
5. obs-start-stream        → Start sending video from OBS
6. yt-transition-broadcast → testing → validate feed
7. yt-transition-broadcast → live → YOU'RE LIVE

To end: yt-transition-broadcast complete + obs-stop-stream

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | YOUTUBE_CLIENT_ID | Yes | OAuth2 client ID | | YOUTUBE_CLIENT_SECRET | Yes | OAuth2 client secret |

API Quota

YouTube API has a daily quota of 10,000 units. Read operations cost ~1 unit, write operations cost ~50 units. Normal streaming use stays well within limits.

One exception: search.list (used by yt-search-videos) costs 100 units per call — about 100 searches per day on the default quota. When the quota is spent, search tools return a clear quotaExceeded message; prefer yt-list-videos (by channel) for cheap listing.

License

MIT

Built by

Runway Services — a humanistic sales and marketing agency.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.