UNPKG

youtube-video-summarizer-mcp

Version:

An MCP server for YouTube video summarization with Claude

9 lines (8 loc) 273 B
import { z } from "zod"; import { ToolDefinition } from "../types/tool-definition.js"; declare const toolSchema: { videoUrl: z.ZodString; language: z.ZodDefault<z.ZodString>; }; export declare const SummarizeVideoTool: ToolDefinition<typeof toolSchema>; export {};