analyze_comment_intents
Extract user intents and actionable insights from YouTube comments to understand audience feedback, questions, and engagement patterns on specific videos.
Instructions
Analyze YouTube comments to extract user intents and actionable insights
Input Schema
Name | Required | Description | Default |
---|---|---|---|
intentCategories | No | Custom intent categories to focus on (optional) | |
maxComments | No | Maximum number of comments to analyze | |
videoId | Yes | YouTube video ID to analyze comments from |
Input Schema (JSON Schema)
{
"properties": {
"intentCategories": {
"description": "Custom intent categories to focus on (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"maxComments": {
"default": 100,
"description": "Maximum number of comments to analyze",
"maximum": 200,
"minimum": 10,
"type": "number"
},
"videoId": {
"description": "YouTube video ID to analyze comments from",
"type": "string"
}
},
"required": [
"videoId"
],
"type": "object"
}