UNPKG

youtube-video-summarizer-mcp

Version:

An MCP server for YouTube video summarization with Claude

7 lines (6 loc) 278 B
import { ToolResponse } from "../types/tool-response.js"; import { VideoDetails } from "youtube-caption-extractor"; /** * Get captions for a YouTube video */ export declare function getYouTubeVideoDetails(videoUrl: string, lang?: string): Promise<ToolResponse<VideoDetails>>;