@mkterswingman/yt-mcp 0.3.4 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mkterswingman/yt-mcp",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "YouTube MCP client — local subtitles + remote API proxy",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,7 @@
13
13
  "build": "tsc -p tsconfig.json",
14
14
  "dev": "tsx src/cli/index.ts",
15
15
  "start": "node dist/cli/index.js",
16
- "postinstall": "node scripts/download-ytdlp.mjs && node scripts/postinstall-hint.mjs"
16
+ "postinstall": "node scripts/download-ytdlp.mjs"
17
17
  },
18
18
  "dependencies": {
19
19
  "@modelcontextprotocol/sdk": "^1.27.1",
@@ -36,7 +36,6 @@
36
36
  "files": [
37
37
  "dist/",
38
38
  "scripts/download-ytdlp.mjs",
39
- "scripts/postinstall-hint.mjs",
40
39
  "README.md"
41
40
  ],
42
41
  "devDependencies": {
@@ -1,29 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- /**
4
- * Post-install: show a prominent setup hint for first-time users.
5
- * Cannot auto-run setup because npm strips TTY from postinstall scripts.
6
- */
7
-
8
- import { existsSync } from "node:fs";
9
- import { join } from "node:path";
10
-
11
- const home = process.env.HOME || process.env.USERPROFILE || "";
12
- const authFile = join(home, ".yt-mcp", "auth.json");
13
-
14
- // Already set up — skip silently
15
- if (existsSync(authFile)) {
16
- process.exit(0);
17
- }
18
-
19
- console.log("");
20
- console.log(" ╔═══════════════════════════════════════════╗");
21
- console.log(" ║ ║");
22
- console.log(" ║ yt-mcp installed successfully! 🎉 ║");
23
- console.log(" ║ ║");
24
- console.log(" ║ Run this to get started: ║");
25
- console.log(" ║ ║");
26
- console.log(" ║ yt-mcp setup ║");
27
- console.log(" ║ ║");
28
- console.log(" ╚═══════════════════════════════════════════╝");
29
- console.log("");