diff --git a/README.md b/README.md index 9e5125a..c1dafbd 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # yt-dlp-mcp -An MCP server implementation that integrates with yt-dlp, providing YouTube content download capabilities for LLMs. +An MCP server implementation that integrates with yt-dlp, providing video content download capabilities (e.g. YouTube, Facebook, etc.) for LLMs. ## Features -* **YouTube Subtitles**: Download subtitles in SRT format for LLMs to read +* **Subtitles**: Download subtitles in SRT format for LLMs to read * **Video Download**: Save videos to your Downloads folder with resolution control * **Privacy-Focused**: Direct download without tracking * **MCP Integration**: Works with Dive and other MCP-compatible LLMs @@ -48,21 +48,21 @@ pip install yt-dlp ## Tool Documentation -* **list_youtube_subtitles** - * List all available subtitles for a YouTube video +* **list_video_subtitles** + * List all available subtitles for a video * Inputs: - * `url` (string, required): URL of the YouTube video + * `url` (string, required): URL of the video -* **download_youtube_srt** - * Download YouTube subtitles in SRT format +* **download_video_srt** + * Download subtitles in SRT format * Inputs: - * `url` (string, required): URL of the YouTube video + * `url` (string, required): URL of the video * `language` (string, optional): Language code (e.g., 'en', 'zh-Hant', 'ja'). Defaults to 'en' -* **download_youtube_video** - * Download YouTube video to user's Downloads folder +* **download_video** + * Download video to user's Downloads folder * Inputs: - * `url` (string, required): URL of the YouTube video + * `url` (string, required): URL of the video * `resolution` (string, optional): Video resolution ('480p', '720p', '1080p', 'best'). Defaults to '720p' ## Usage Examples @@ -70,6 +70,7 @@ pip install yt-dlp Ask your LLM to: ``` "List available subtitles for this video: https://youtube.com/watch?v=..." +"Download a video from facebook: https://facebook.com/..." "Download Chinese subtitles from this video: https://youtube.com/watch?v=..." "Download this video in 1080p: https://youtube.com/watch?v=..." ```