@receiz/mcp-server 97.5.0 → 97.6.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 +13 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -92,6 +92,19 @@ Commerce/store projections:
|
|
|
92
92
|
- `receiz_public_store_publish`
|
|
93
93
|
- `receiz_public_store_resolve`
|
|
94
94
|
|
|
95
|
+
`receiz_public_store_publish` is the delegated agent/server write lane. For merchant-owned storefront state, use the SDK signed publish lane:
|
|
96
|
+
|
|
97
|
+
```ts
|
|
98
|
+
await receiz.publicStore.publishWithIdentityProof({
|
|
99
|
+
keyFile,
|
|
100
|
+
tenantHost,
|
|
101
|
+
merchantReceizId,
|
|
102
|
+
storeStateRecord,
|
|
103
|
+
});
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
That path uses the merchant Identity Seal / Receiz Key as authority and does not require `RECEIZ_ACCESS_TOKEN`.
|
|
107
|
+
|
|
95
108
|
Proof and verification:
|
|
96
109
|
|
|
97
110
|
- `receiz_verify_asset`
|
package/dist/index.js
CHANGED
|
@@ -487,7 +487,7 @@ export async function handleReceizMcpMessage(message, runtime = createReceizMcpR
|
|
|
487
487
|
capabilities: { tools: {} },
|
|
488
488
|
serverInfo: {
|
|
489
489
|
name: "@receiz/mcp-server",
|
|
490
|
-
version: "97.
|
|
490
|
+
version: "97.6.0",
|
|
491
491
|
},
|
|
492
492
|
authority: RECEIZ_MCP_AUTHORITY_BOUNDARY,
|
|
493
493
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@receiz/mcp-server",
|
|
3
|
-
"version": "97.
|
|
3
|
+
"version": "97.6.0",
|
|
4
4
|
"description": "MCP server for agents building and verifying Receiz proof-native applications through the canonical Receiz SDK rails.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@receiz/sdk": "^97.
|
|
34
|
+
"@receiz/sdk": "^97.6.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^20",
|