@remcp/remcp 0.2.21 → 0.2.22

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/README.md CHANGED
@@ -9,7 +9,7 @@ remcp --version
9
9
  remcp status
10
10
  ```
11
11
 
12
- Pairing commands are generated in the workspace at <https://remcp.delio24.com/app/connect>. The
12
+ Pairing commands are generated in the workspace at <https://remcp.site/app/connect>. The
13
13
  generated command runs `remcp connect --server … --code … --install`, which stores a per-device
14
14
  credential under `~/.config/remcp/`, installs the runtime from npm, and registers a user service
15
15
  (systemd on Linux, LaunchAgent on macOS, Scheduled Task on Windows).
@@ -34,7 +34,7 @@ and the current usage-metrics state, so a support request can be answered with o
34
34
  ## What runs on your computer
35
35
 
36
36
  - the agent (`remcp start`), which holds the device credential and dials
37
- `wss://remcp.delio24.com/agent`;
37
+ `wss://remcp.site/agent`;
38
38
  - [`@remcp/runtime`](https://www.npmjs.com/package/@remcp/runtime), spawned by the agent as an MCP
39
39
  stdio server. The runtime executes the tools, opens no network connection, and is supervised: if it
40
40
  exits, the agent restarts it with backoff and reports the restart instead of failing silently.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remcp/remcp",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "ReMCP device client: pair a computer with ReMCP and run the outbound-only agent that hosts the local MCP runtime.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/cli.mjs CHANGED
@@ -22,7 +22,7 @@ const windowsTaskName = 'ReMCP Agent';
22
22
  // How npm is invoked is resolved from the running node when possible: a background service has a
23
23
  // minimal PATH, which is why auto-update used to find no npm on macOS. See src/npm.mjs.
24
24
  const npm = resolveNpm();
25
- const officialOrigin = 'https://remcp.delio24.com';
25
+ const officialOrigin = 'https://remcp.site';
26
26
 
27
27
  function parse(argv) {
28
28
  const [command = 'help', ...rest] = argv;