List Channel Sections
youtube_list_channel_sectionsRetrieve all sections on your YouTube channel home page, such as featured playlists and popular uploads. Choose between markdown table or JSON output.
Instructions
List all sections on the authenticated user's YouTube channel home page (e.g. Featured Playlists, Single Playlist, Popular Uploads, etc.).
Args:
response_format(optional):"markdown"(default) for a readable table or"json"for the full API payload array.
Returns (JSON shape):
[
{
"id": "CS_ID",
"snippet": {
"type": "singlePlaylist",
"title": "Section title",
"position": 0,
"channelId": "UCxxxxxxxx"
},
"contentDetails": {
"playlists": ["PLxxxxxxxx"],
"channels": []
}
}
]Examples:
"What sections are on my channel page?" → call with no arguments.
"Give me the raw JSON of my channel sections" → pass
response_format: "json".
Errors:
401 / 403: credentials expired or missing scope — re-run
npm run auth.404: authenticated account has no YouTube channel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | Output format: "markdown" (default) for a readable list, "json" for the raw API array. | markdown |