videos_searchVideos
Search YouTube videos by entering a query and specify the maximum number of results to retrieve, enabling efficient content discovery and information gathering.
Instructions
Search for videos on YouTube
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of results to return | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"description": "Maximum number of results to return",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}