YouTube Shorts Agent MCP Server

Agent-first YouTube Shorts uploader: dry-run validation, OAuth checks, synthetic-media metadata.

Local serverstdio

What is the YouTube Shorts Agent MCP server?

Agent-first YouTube Shorts uploader: dry-run validation, OAuth checks, synthetic-media metadata. The youtube shorts agent mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.

What it actually does

Its toolset

Everything the assistant can do here goes through one of these:

  • youtube_agent_manifest — Install/runtime guidance for Codex, Claude, Cursor, Hermes and OpenClaw
  • youtube_connection_status — OAuth and dry-run readiness without token values
  • youtube_privacy_audit — Upload scope, synthetic media and local file boundaries
  • youtube_oauth_authorize_url — PKCE authorization URL with local session storage
  • youtube_upload_short — Dry-run or live Shorts upload
  • youtube_list_recent_videos — Lightweight channel verification

Configuration

You will need 4 environment variables: YOUTUBE_CLIENT_ID, YOUTUBE_CLIENT_SECRET, YOUTUBE_ACCESS_TOKEN, YOUTUBE_REFRESH_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at args on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of file and storage access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. YouTube Shorts Agent's toolset — youtube_agent_manifest, youtube_connection_status, youtube_privacy_audit and 3 more — is a fair guide to whether it matches your workflow. It is maintained by davidmosiah; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the youtube shorts agent mcp server does with a few real requests.

Available tools

ToolWhat it does
youtube_agent_manifestInstall/runtime guidance for Codex, Claude, Cursor, Hermes and OpenClaw
youtube_connection_statusOAuth and dry-run readiness without token values
youtube_privacy_auditUpload scope, synthetic media and local file boundaries
youtube_oauth_authorize_urlPKCE authorization URL with local session storage
youtube_upload_shortDry-run or live Shorts upload
youtube_list_recent_videosLightweight channel verification

How to install the YouTube Shorts Agent MCP server

{
  "mcpServers": {
    "youtube-shorts-agent": {
      "command": "npx",
      "args": ["-y", "args"],
      "env": {
        "YOUTUBE_CLIENT_ID": "your-value",
        "YOUTUBE_CLIENT_SECRET": "your-value",
        "YOUTUBE_ACCESS_TOKEN": "your-value",
        "YOUTUBE_REFRESH_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
YOUTUBE_CLIENT_IDConfiguration value read at startup.Optional
YOUTUBE_CLIENT_SECRETCredential the server authenticates with.Yes
YOUTUBE_ACCESS_TOKENCredential the server authenticates with.Yes
YOUTUBE_REFRESH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use YouTube Shorts Agent to youtube agent manifest.
  • Use YouTube Shorts Agent to youtube connection status.
  • Use YouTube Shorts Agent to youtube privacy audit.

Frequently asked questions

It connects YouTube Shorts Agent to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (youtube_agent_manifest, youtube_connection_status, youtube_privacy_audit, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with YouTube Shorts Agent directly.