Create Playlist
youtube_create_playlistCreate a new YouTube playlist on your channel with a title, optional description, and privacy status (public, private, or unlisted).
Instructions
Create a new playlist on the authenticated channel.
Args
title(string, required): Playlist title (max 255 characters).description(string, optional): Playlist description.privacyStatus("public" | "private" | "unlisted", default "private"): Visibility.defaultLanguage(string, optional): BCP-47 language code (e.g."en").
Returns Confirmation Markdown + structured new playlist resource:
{ "id": "PL...", "title": "...", "privacyStatus": "private", "publishedAt": "..." }Examples
youtube_create_playlist({ title: "My Shorts", privacyStatus: "public" })
Errors
400 → invalid parameters (e.g. empty title).
403 → quota exceeded or insufficient scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Playlist title (required, max 255 chars). | |
| description | No | Optional playlist description. | |
| privacyStatus | No | Visibility: "public", "private" (default), or "unlisted". | private |
| defaultLanguage | No | Optional BCP-47 language code, e.g. "en". |