@minns/openclaw-minns 0.7.0 → 0.7.2

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
@@ -26,23 +26,6 @@ Add the MCP server entry to your OpenClaw config (typically `~/.config/openclaw/
26
26
  "minns": {
27
27
  "command": "openclaw-minns-mcp",
28
28
  "env": {
29
- "MINNS_BASE_URL": "https://minns.ai/api",
30
- "MINNS_DEBUG": "false"
31
- }
32
- }
33
- }
34
- }
35
- ```
36
-
37
- If your EventGraphDB instance requires authentication:
38
-
39
- ```json
40
- {
41
- "mcpServers": {
42
- "minns": {
43
- "command": "openclaw-minns-mcp",
44
- "env": {
45
- "MINNS_BASE_URL": "https://your-server.example.com",
46
29
  "MINNS_API_KEY": "your-secret-key",
47
30
  "MINNS_DEBUG": "false"
48
31
  }
@@ -53,11 +36,12 @@ If your EventGraphDB instance requires authentication:
53
36
 
54
37
  ## Environment variables
55
38
 
56
- | Variable | Default | Description |
57
- | ---------------- | ------------------------- | ---------------------------------------------- |
58
- | `MINNS_BASE_URL` | `https://minns.ai/api` | EventGraphDB HTTP endpoint |
59
- | `MINNS_API_KEY` | *(none)* | Optional Bearer token for authenticated access |
60
- | `MINNS_DEBUG` | `false` | Set to `true` for verbose stderr logging |
39
+ | Variable | Default | Description |
40
+ | --------------- | -------- | ---------------------------------------------- |
41
+ | `MINNS_API_KEY` | *(none)* | Bearer token for authenticated access |
42
+ | `MINNS_DEBUG` | `false` | Set to `true` for verbose stderr logging |
43
+
44
+ > **Note:** The base URL (`https://minns.ai`) is fixed and cannot be overridden.
61
45
 
62
46
  ## Available tools
63
47
 
@@ -79,7 +63,7 @@ Start EventGraphDB, then run the binary directly. It speaks JSON-RPC 2.0 over st
79
63
 
80
64
  ```bash
81
65
  # Start the MCP server
82
- MINNS_BASE_URL=https://minns.ai/api npx openclaw-minns-mcp
66
+ MINNS_API_KEY=your-secret-key npx openclaw-minns-mcp
83
67
  ```
84
68
 
85
69
  In another terminal, pipe a JSON-RPC request to test:
package/dist/config.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { createClient } from "minns-sdk";
2
2
  export function loadConfig(env) {
3
3
  return {
4
- baseUrl: "https://minns.ai/api",
4
+ baseUrl: "https://minns.ai",
5
5
  debug: env?.MINNS_DEBUG === "true",
6
6
  apiKey: env?.MINNS_API_KEY || undefined,
7
7
  };
@@ -1 +1 @@
1
- {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAiC,MAAM,WAAW,CAAC;AAQxE,MAAM,UAAU,UAAU,CAAC,GAA4B;IACrD,OAAO;QACL,OAAO,EAAE,sBAAsB;QAC/B,KAAK,EAAE,GAAG,EAAE,WAAW,KAAK,MAAM;QAClC,MAAM,EAAE,GAAG,EAAE,aAAa,IAAI,SAAS;KACxC,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,GAAgB;IAC1C,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC;QAChB,MAAM,IAAI,KAAK,CACb,qHAAqH,CACtH,CAAC;IACJ,CAAC;IAED,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,KAAK,EAAE,GAAG,CAAC,KAAK;QAChB,OAAO,EAAE;YACP,cAAc,EAAE,kBAAkB;YAClC,aAAa,EAAE,UAAU,GAAG,CAAC,MAAM,EAAE;SACtC;KACF,CAAC,CAAC;AACL,CAAC"}
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAiC,MAAM,WAAW,CAAC;AAQxE,MAAM,UAAU,UAAU,CAAC,GAA4B;IACrD,OAAO;QACL,OAAO,EAAE,kBAAkB;QAC3B,KAAK,EAAE,GAAG,EAAE,WAAW,KAAK,MAAM;QAClC,MAAM,EAAE,GAAG,EAAE,aAAa,IAAI,SAAS;KACxC,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,GAAgB;IAC1C,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC;QAChB,MAAM,IAAI,KAAK,CACb,qHAAqH,CACtH,CAAC;IACJ,CAAC;IAED,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,KAAK,EAAE,GAAG,CAAC,KAAK;QAChB,OAAO,EAAE;YACP,cAAc,EAAE,kBAAkB;YAClC,aAAa,EAAE,UAAU,GAAG,CAAC,MAAM,EAAE;SACtC;KACF,CAAC,CAAC;AACL,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minns/openclaw-minns",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "MCP stdio server integrating Minns EventGraphDB into OpenClaw",
5
5
  "type": "module",
6
6
  "main": "./dist/mcp.js",