videos_getVideo
Retrieve detailed information about a YouTube video, such as metadata, by providing the video ID and specifying which parts to fetch using the MCP server's standardized interface.
Instructions
Get detailed information about a YouTube video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parts | No | Parts of the video to retrieve | |
videoId | Yes | The YouTube video ID |
Input Schema (JSON Schema)
{
"properties": {
"parts": {
"description": "Parts of the video to retrieve",
"items": {
"type": "string"
},
"type": "array"
},
"videoId": {
"description": "The YouTube video ID",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}