@mkterswingman/5mghost-yonder 0.0.16 → 0.0.17

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/dist/cli/setup.js CHANGED
@@ -38,6 +38,13 @@ function tryRegisterMcp(cmd, label) {
38
38
  console.log(` ⚠️ ${label} registration timed out after ${MCP_REGISTER_TIMEOUT_MS}ms — skipped auto-register.`);
39
39
  return false;
40
40
  }
41
+ const summary = failure.output.replace(/\s+/g, " ").trim().slice(0, 240);
42
+ if (summary) {
43
+ console.log(` ⚠️ ${label} auto-register failed: ${summary}`);
44
+ }
45
+ else {
46
+ console.log(` ⚠️ ${label} auto-register failed with no diagnostic output.`);
47
+ }
41
48
  return false;
42
49
  }
43
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mkterswingman/5mghost-yonder",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "Internal MCP client with local data tools and remote API proxy",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,9 +1,3 @@
1
1
  $ErrorActionPreference = "Stop"
2
2
 
3
- if (-not (Get-Command node -ErrorAction SilentlyContinue)) {
4
- winget install OpenJS.NodeJS.LTS
5
- }
6
-
7
- npm install -g @mkterswingman/5mghost-yonder
8
- yt-mcp runtime install
9
- yt-mcp setup
3
+ irm https://mkterswingman.com/install/yt-mcp.ps1 | iex
@@ -1,15 +1,4 @@
1
1
  #!/usr/bin/env bash
2
2
  set -euo pipefail
3
3
 
4
- if ! command -v node >/dev/null 2>&1; then
5
- if command -v brew >/dev/null 2>&1; then
6
- brew install node
7
- else
8
- echo "Node.js is required. Install it first, then rerun this script." >&2
9
- exit 1
10
- fi
11
- fi
12
-
13
- npm install -g @mkterswingman/5mghost-yonder
14
- yt-mcp runtime install
15
- yt-mcp setup
4
+ curl -fsSL https://mkterswingman.com/install/yt-mcp.sh | bash