nofax 0.2.0-oidc-test.0 → 0.2.1
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 -4
- package/package.json +1 -1
- package/src/mcp-server.mjs +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Nofax is a small open-source bridge between an agent and a human. Local mode can
|
|
|
11
11
|
|
|
12
12
|
No Nofax account. No paid model API. No inbound port on your machine. MIT licensed.
|
|
13
13
|
|
|
14
|
-
> **Current status:** local Nofax is `0.2.
|
|
14
|
+
> **Current status:** local Nofax is `0.2.1`. The optional Cloudflare Worker is the upcoming `0.3.0` remote surface and is developed alongside the local package.
|
|
15
15
|
|
|
16
16
|
## Why Nofax
|
|
17
17
|
|
|
@@ -47,10 +47,8 @@ The remote Worker is **not** a hosted remote-approval service. It can send an in
|
|
|
47
47
|
|
|
48
48
|
### 1. Install
|
|
49
49
|
|
|
50
|
-
Until a registry release is published:
|
|
51
|
-
|
|
52
50
|
```bash
|
|
53
|
-
npm install -g
|
|
51
|
+
npm install -g nofax
|
|
54
52
|
```
|
|
55
53
|
|
|
56
54
|
Requires Node.js 20 or newer.
|
package/package.json
CHANGED
package/src/mcp-server.mjs
CHANGED
|
@@ -32,7 +32,7 @@ function result(value) {
|
|
|
32
32
|
|
|
33
33
|
export function buildMcpServer({ handlers = createMcpToolHandlers() } = {}) {
|
|
34
34
|
const server = new McpServer(
|
|
35
|
-
{ name: 'nofax', version: '0.2.
|
|
35
|
+
{ name: 'nofax', version: '0.2.1' },
|
|
36
36
|
{ instructions: SERVER_INSTRUCTIONS }
|
|
37
37
|
);
|
|
38
38
|
|