@remcp/remcp 0.2.20 → 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 +2 -2
- package/package.json +1 -1
- package/src/cli.mjs +1 -1
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.
|
|
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.
|
|
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
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.
|
|
25
|
+
const officialOrigin = 'https://remcp.site';
|
|
26
26
|
|
|
27
27
|
function parse(argv) {
|
|
28
28
|
const [command = 'help', ...rest] = argv;
|