yt_search
ActiveTool of Youtube
declared in 0.1.0
Search YouTube for videos, channels, or playlists. Returns snippet info including title, description, channel, thumbnails, and publish date.
Parameters schema
{
"type": "object",
"examples": [
{
"query": "machine learning tutorial",
"_apiKey": "your-youtube-api-key"
},
{
"type": "video",
"order": "viewCount",
"query": "Python programming",
"_apiKey": "your-youtube-api-key",
"max_results": 20,
"published_after": "2024-01-01T00:00:00Z"
}
],
"required": [
"_apiKey",
"query"
],
"properties": {
"type": {
"type": "string",
"description": "Resource type to search: \"video\", \"channel\", or \"playlist\" (default: \"video\")"
},
"order": {
"type": "string",
"description": "Sort order: \"date\", \"rating\", \"relevance\", or \"viewCount\" (default: \"relevance\")"
},
"query": {
"type": "string",
"description": "Search term"
},
"_apiKey": {
"type": "string",
"description": "YouTube Data API v3 key from Google Cloud Console"
},
"channel_id": {
"type": "string",
"description": "Filter results to a specific channel ID"
},
"max_results": {
"type": "number",
"description": "Number of results to return (default 10, max 50)"
},
"published_after": {
"type": "string",
"description": "Filter results published after this ISO 8601 date (e.g. \"2024-01-01T00:00:00Z\")"
}
}
}Parent server
Youtube
https://github.com/pipeworx-io/mcp-youtube
1/7 registries