@nexus-flow/mcp 0.27.0 → 0.29.0

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
@@ -1,7 +1,7 @@
1
1
  # @nexus-flow/mcp
2
2
 
3
3
  A tiny **runner shim** that lets an MCP host (Claude Desktop, Cursor, Windsurf, …) start the
4
- [nexus-flow](https://nxf.nxsflow.com) MCP server **without `nxs` installed first**.
4
+ [nexus-flow](https://nxsflow.com/open-source) MCP server **without `nxs` installed first**.
5
5
 
6
6
  It fetches the signed `nxs` prebuilt for your platform, **verifies it (sha256 + minisign)**,
7
7
  caches it, and execs `nxs mcp serve` — passing your arguments through.
@@ -49,7 +49,7 @@ malicious origin fails fast instead of hanging or exhausting memory before the g
49
49
  | ------------------- | --------------------------- | -------------------------------------------- |
50
50
  | `NXF_CHANNEL` | `stable` | Promotion ring (`stable` / `beta` / `alpha`) |
51
51
  | `NXF_VERSION` | *(newest in channel)* | Pin an exact version |
52
- | `NXF_BASE_URL` | `https://nxf.nxsflow.com` | Artifact origin |
52
+ | `NXF_BASE_URL` | `https://nxsflow.com/nxs` | Artifact origin |
53
53
  | `NXF_PLATFORM` | *(auto from os/arch)* | Override host detection |
54
54
  | `NXS_MCP_CACHE_DIR` | OS cache dir | Where the verified `nxs` is cached |
55
55
 
package/lib/constants.js CHANGED
@@ -7,7 +7,7 @@
7
7
  const EMBEDDED_MINISIGN_PUBKEY = 'RWRnRFdblE2/DEmkBWpMPqXYele5JoNtQubF+N1Ryp7msJgq7HKn2Ola';
8
8
 
9
9
  // Public origin serving /latest, /download/*, and the sidecars (install.sh's NXF_BASE_URL default).
10
- const DEFAULT_BASE_URL = 'https://nxf.nxsflow.com';
10
+ const DEFAULT_BASE_URL = 'https://nxsflow.com/nxs';
11
11
 
12
12
  // Default promotion ring — the most-stable of release/channels (single source of truth). `cargo
13
13
  // xtask channels check` asserts this equals the canonical most-stable channel. The set of shipped
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-flow/mcp",
3
- "version": "0.27.0",
3
+ "version": "0.29.0",
4
4
  "description": "Runner shim: fetch, verify (sha256 + minisign), cache, and exec the signed nxs binary as an MCP server for hosts where nxs is not installed.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -8,7 +8,7 @@
8
8
  "nexus-flow",
9
9
  "nxs"
10
10
  ],
11
- "homepage": "https://nxf.nxsflow.com",
11
+ "homepage": "https://nxsflow.com/open-source",
12
12
  "bugs": "https://github.com/nxsflow/nexus-flow/issues",
13
13
  "license": "Apache-2.0 OR MIT",
14
14
  "type": "commonjs",