search
Search YouTube videos using the Youtube138 MCP Server to find content based on queries, language, and region parameters.
Instructions
Search
Query Parameters:
q: Search query
cursor: Cursor token
hl: Example value: en
gl: Example value: US
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Search query | |
| cursor | No | Cursor token | |
| hl | No | Example value: en | |
| gl | No | Example value: US |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Cursor token",
"type": "string"
},
"gl": {
"description": "Example value: US",
"type": "string"
},
"hl": {
"description": "Example value: en",
"type": "string"
},
"q": {
"description": "Search query",
"type": "string"
}
},
"required": [],
"type": "object"
}