get_youtube_transcript
Fetch transcript text and timed segments for many public YouTube videos with accessible captions.
Use Scority transcript data in MCP-style workflows. The Transcript API supplies the text and timestamped segments that local tools and agents need.
A useful MCP-style workflow needs a protected way to fetch transcript text and timed segments by video URL or video ID. Scority supplies that transcript contract through the HTTP API and OpenAPI spec.
Fetch transcript text and timed segments for many public YouTube videos with accessible captions.
The MCP process reads SCORITY_API_KEY from the local environment. Keys are not passed in tool arguments.
Returns text, language, source, segments, segment_count, and text_length without internal cache or proxy details.
MCP clients can ask for a transcript by URL or video ID. Language selection uses the same language parameter as the Transcript API.
{
"tool": "get_youtube_transcript",
"arguments": {
"video_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"language": "en"
}
}{
"tool": "get_youtube_transcript",
"arguments": {
"video_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"language": "en"
}
}The current product surface is intentionally focused on transcript retrieval. Search, channel metadata, playlist traversal, upload processing, billing, and dashboard operations are separate product surfaces and are not part of this transcript workflow.