ask_about_youtube_video
Extract insights from YouTube videos by asking questions or receiving general descriptions using the 'Youtube Vision MCP' server powered by the Google Gemini Vision API.
Instructions
Answers a question about the video or provides a general description if no question is asked.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
question | No | Question about the video content. If omitted, a general description will be generated. | |
youtube_url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"question": {
"description": "Question about the video content. If omitted, a general description will be generated.",
"type": "string"
},
"youtube_url": {
"format": "uri",
"type": "string"
}
},
"required": [
"youtube_url"
],
"type": "object"
}