From d80b8caed2f690151bc186106b37c7aa1ce18139 Mon Sep 17 00:00:00 2001 From: Kevin Watt Date: Tue, 11 Feb 2025 02:43:00 +0800 Subject: [PATCH 1/3] Update README.md --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b88562..9ccf647 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,19 @@ Uses `yt-dlp` to download YouTube content and connects it to LLMs via [Model Con 1. Install `yt-dlp` (Homebrew and WinGet both work great here) 2. Install this via [dive](https://github.com/OpenAgentPlatform/Dive): - ```bash - mcp-installer install @kevinwatt/yt-dlp-mcp - ``` +```json +{ + "mcpServers": { + "yt-dlp-mcp": { + "command": "npx", + "args": [ + "-y", + "@kevinwatt/yt-dlp-mcp" + ] + } + } +} +``` ## Usage Examples From 4594ca7e78afdc4f4939cc62ff9102058cfba706 Mon Sep 17 00:00:00 2001 From: Kevin Watt Date: Tue, 11 Feb 2025 02:44:40 +0800 Subject: [PATCH 2/3] Update README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 9ccf647..d778fd5 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,25 @@ Uses `yt-dlp` to download YouTube content and connects it to LLMs via [Model Con ## Installation 1. Install `yt-dlp` (Homebrew and WinGet both work great here) +### Additional Setup for yt-dlp-mcp + +yt-dlp-mcp requires the yt-dlp package. Install it based on your operating system: + +#### Windows +```bash +winget install yt-dlp +``` + +#### MacOS +```bash +brew install yt-dlp +``` + +#### Linux +```bash +pip install yt-dlp +``` + 2. Install this via [dive](https://github.com/OpenAgentPlatform/Dive): ```json { From 69269c78b608fba0725ff82ce1153720d6c77156 Mon Sep 17 00:00:00 2001 From: Kevin Watt Date: Tue, 11 Feb 2025 02:45:15 +0800 Subject: [PATCH 3/3] Update README.md --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d778fd5..2dd6465 100644 --- a/README.md +++ b/README.md @@ -11,21 +11,18 @@ Uses `yt-dlp` to download YouTube content and connects it to LLMs via [Model Con ## Installation 1. Install `yt-dlp` (Homebrew and WinGet both work great here) -### Additional Setup for yt-dlp-mcp yt-dlp-mcp requires the yt-dlp package. Install it based on your operating system: -#### Windows +Windows ```bash winget install yt-dlp ``` - -#### MacOS +MacOS ```bash brew install yt-dlp ``` - -#### Linux +Linux ```bash pip install yt-dlp ```