Twitch MCP Server

get_video_comments

アーカイブ動画のコメントを取得します

Input Schema

NameRequiredDescriptionDefault
cursorNo次のページのカーソル
limitNo取得する最大コメント数(デフォルト: 20)
videoIdYesビデオID

Input Schema (JSON Schema)

{ "properties": { "cursor": { "description": "次のページのカーソル", "type": "string" }, "limit": { "description": "取得する最大コメント数(デフォルト: 20)", "maximum": 100, "minimum": 1, "type": "number" }, "videoId": { "description": "ビデオID", "type": "string" } }, "required": [ "videoId" ], "type": "object" }