@prismnetwork/mcp 0.9.1 → 0.9.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 +2 -2
- package/package.json +1 -1
- package/server.mjs +1 -1
package/README.md
CHANGED
|
@@ -135,7 +135,7 @@ Point your MCP client (Claude Desktop / Code) at the published server:
|
|
|
135
135
|
"args": ["-y", "@prismnetwork/mcp"],
|
|
136
136
|
"env": {
|
|
137
137
|
"PRISM_AGENT_KEY": "0x<agent wallet private key>",
|
|
138
|
-
"PRISM_ESCROW": "
|
|
138
|
+
"PRISM_ESCROW": "0xfD4228eEEfC49e4b76A0CD40af9fdd546220B2FD"
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
}
|
|
@@ -148,7 +148,7 @@ Or add it to Claude Code in one line:
|
|
|
148
148
|
|
|
149
149
|
```sh
|
|
150
150
|
claude mcp add prism \
|
|
151
|
-
--env PRISM_ESCROW=
|
|
151
|
+
--env PRISM_ESCROW=0xfD4228eEEfC49e4b76A0CD40af9fdd546220B2FD \
|
|
152
152
|
--env PRISM_AGENT_KEY=0x<agent wallet private key> \
|
|
153
153
|
-- npx -y @prismnetwork/mcp
|
|
154
154
|
```
|
package/package.json
CHANGED
package/server.mjs
CHANGED
|
@@ -23,7 +23,7 @@ const IMAGE = process.env.PRISM_DEFAULT_IMAGE ?? DEFAULT_IMAGE;
|
|
|
23
23
|
const PUBLIC_API = process.env.PRISM_PUBLIC_API ?? "https://api.prismnetwork.tech";
|
|
24
24
|
// The live lease escrow. Overridable, but its absence must not silently
|
|
25
25
|
// disable the wallet the way a missing key does.
|
|
26
|
-
const DEFAULT_ESCROW = "
|
|
26
|
+
const DEFAULT_ESCROW = "0xfD4228eEEfC49e4b76A0CD40af9fdd546220B2FD";
|
|
27
27
|
// Matches the limit the SDK and the control plane enforce, so a command that
|
|
28
28
|
// cannot run is rejected before an escrow is funded.
|
|
29
29
|
const MAX_COMMAND_BYTES = 8 * 1024;
|