@hailer/mcp 1.3.13 → 1.3.14

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.
@@ -65,7 +65,7 @@ Replace `src/App.tsx` and add components (load `hailer-app-builder` + `hailer-de
65
65
  **Hailer Studio:** `localhost:3000` is unreachable from outside the sandbox — publishing is the only way to test inside Hailer. Publish a SEPARATE dev app and iterate on it:
66
66
 
67
67
  ```bash
68
- npm run publish-production -- --host http://hailer-api:1337 --create --app-name "<App Name> - Dev" --workspace <workspaceId> --force
68
+ npm run publish-production -- --host https://api.hailer.com --create --app-name "<App Name> - Dev" --workspace <workspaceId> --force
69
69
  ```
70
70
 
71
71
  After the first publish `public/manifest.json` holds the dev `appId`; later iterations just need `--host ... --force`. Share it: MCP `manage_app({ action: 'add_member', appId, member: "network_<workspaceId>" })`.
@@ -128,8 +128,8 @@ A plain publish against the scaffold's placeholder appId silently uploads to the
128
128
  # FIRST publish (fresh scaffold) — local machine
129
129
  npm run publish-production -- --create --app-name "<App Name>" --workspace <workspaceId> --force
130
130
 
131
- # FIRST publish — Hailer Studio (cluster, cannot reach api.hailer.com)
132
- npm run publish-production -- --host http://hailer-api:1337 --create --app-name "<App Name>" --workspace <workspaceId> --force
131
+ # FIRST publish — Hailer Studio (in-cluster; set --host to the public API explicitly)
132
+ npm run publish-production -- --host https://api.hailer.com --create --app-name "<App Name>" --workspace <workspaceId> --force
133
133
 
134
134
  # UPDATE (manifest already has a real appId)
135
135
  npm run publish-production -- --force
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hailer/mcp",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "config": {
5
5
  "docker": {
6
6
  "registry": "registry.gitlab.com/hailer-repos/hailer-mcp"