YouTube MCP Server

by coyaSONG
Verified

get-segmented-transcript

Split a YouTube video transcript into equal time segments for focused analysis. Extract markdown-formatted text with timestamps, enabling easy navigation and detailed study of specific parts of the content.

Instructions

Divide a video transcript into segments for easier analysis and navigation. This tool splits the video into equal time segments and extracts the transcript for each segment with proper timestamps. Ideal for analyzing the structure of longer videos or when you need to focus on specific parts of the content. Parameters: videoId (required) - The YouTube video ID; segmentCount (optional) - Number of segments to divide the video into (default: 4, max: 10). Returns a markdown-formatted text with each segment clearly labeled with time ranges and containing the relevant transcript text.

Input Schema

NameRequiredDescriptionDefault
segmentCountNo
videoIdYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "segmentCount": { "type": "string" }, "videoId": { "minLength": 1, "type": "string" } }, "required": [ "videoId" ], "type": "object" }
ID: nuyw49oscd