YOUTUBE_LIST_PLAYLIST_ITEMS
Tool to list videos in a playlist, with pagination support. Use when walking through a channel's uploads playlist to enumerate all videos.
YOUTUBE_LIST_USER_PLAYLISTS
Retrieves playlists owned by the authenticated user, implicitly using mine=True.
YOUTUBE_LIST_USER_SUBSCRIPTIONS
Retrieves the authenticated user's YouTube channel subscriptions, allowing specification of response parts and pagination.
YOUTUBE_LOAD_CAPTIONS
Downloads a specific YouTube caption track, which must be owned by the authenticated user, and returns its content as text. Note: This action requires you to own the video (YouTube Data API v3 restriction). Non-owned videos will return 403 Forbidden errors, including many auto-generated caption tracks.
YOUTUBE_SEARCH_YOU_TUBE
Searches YouTube for videos, channels, or playlists using a query term, returning the raw API response.
YOUTUBE_SUBSCRIBE_CHANNEL
Subscribes the authenticated user to a specified YouTube channel, identified by its unique `channelId` which must be valid and existing.
YOUTUBE_UPDATE_THUMBNAIL
Sets the custom thumbnail for a YouTube video using an image from thumbnailUrl; the authenticated user must have permission to edit the video.
YOUTUBE_UPDATE_VIDEO
Updates metadata for a YouTube video identified by videoId, which must exist; an empty list for tags removes all existing tags.
YOUTUBE_UPLOAD_VIDEO
Uploads a video from a local file path to a YouTube channel; the video file must be in a YouTube-supported format.
YOUTUBE_VIDEO_DETAILS
Retrieves specified information parts (e.g., snippet, contentDetails, statistics) for a YouTube video, identified by its ID.