yt_channel_videos
ActiveTool of Youtube
declared in 0.1.0
List recent videos from a YouTube channel, ordered by date. Returns video ID, title, description, and publish date.
Parameters schema
{
"type": "object",
"examples": [
{
"_apiKey": "your-youtube-api-key",
"channel_id": "UCkRfArvrzheW2E7b6SVV7vA"
},
{
"_apiKey": "your-youtube-api-key",
"channel_id": "UCkRfArvrzheW2E7b6SVV7vA",
"max_results": 25,
"published_after": "2024-06-01T00:00:00Z"
}
],
"required": [
"_apiKey",
"channel_id"
],
"properties": {
"_apiKey": {
"type": "string",
"description": "YouTube Data API v3 key from Google Cloud Console"
},
"channel_id": {
"type": "string",
"description": "Channel ID to list videos from"
},
"max_results": {
"type": "number",
"description": "Number of videos to return (default 10, max 50)"
},
"published_after": {
"type": "string",
"description": "Filter videos published after this ISO 8601 date"
},
"published_before": {
"type": "string",
"description": "Filter videos published before this ISO 8601 date"
}
}
}Parent server
Youtube
https://github.com/pipeworx-io/mcp-youtube
1/7 registries