@atrib/recall 0.14.3 → 0.14.5
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/LICENSE +1 -1
- package/README.md +13 -1
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
See the License for the specific language governing permissions and
|
|
202
202
|
limitations under the License.
|
|
203
203
|
|
|
204
|
-
Copyright 2025-2026
|
|
204
|
+
Copyright 2025-2026 atrib contributors
|
|
205
205
|
|
|
206
206
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
207
207
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
# `@atrib/recall`
|
|
2
2
|
|
|
3
|
-
MCP server for atrib. Lets agents query their own provable past from the local signed-record mirror with per-record signature verification.
|
|
3
|
+
MCP server for atrib's verifiable action layer. Lets agents query their own provable past from the local signed-record mirror with per-record signature verification.
|
|
4
4
|
|
|
5
5
|
The consumer-side counterpart to `@atrib/emit`: emit produces signed records, recall reads them back and exposes them to the agent through eight MCP tools. Each returned record carries a `signature_verified` boolean so a poorly-written agent treats tampered records as such.
|
|
6
6
|
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pnpm add @atrib/recall
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Verify a local build with `pnpm --filter @atrib/recall test`.
|
|
14
|
+
|
|
7
15
|
## Tool surface
|
|
8
16
|
|
|
9
17
|
Eight MCP tools cover the cognitive surface of the local mirror.
|
|
@@ -181,3 +189,7 @@ Or run via `npx`:
|
|
|
181
189
|
- **No log-inclusion verification.** Local signature verification ≠ log commitment proof. Use the log API for inclusion proofs.
|
|
182
190
|
- **No graph derivation.** Returns records, not the [§3.2.4](https://github.com/creatornader/atrib/blob/main/atrib-spec.md#324-edge-derivation-rules) graph. For declared-relationship walks, use `@atrib/trace`; for graph projections, query graph-node directly.
|
|
183
191
|
- **No write surface.** Read-only. Use `@atrib/emit` to sign new records.
|
|
192
|
+
|
|
193
|
+
## Part of atrib
|
|
194
|
+
|
|
195
|
+
atrib is an open protocol for verifiable agent actions. Every action becomes a signed, chain-linked record that anyone can verify against a public Merkle log, with no operator to trust. This package is one entrypoint. See the [full package family](https://github.com/creatornader/atrib#packages) and the [protocol spec](https://github.com/creatornader/atrib/blob/main/atrib-spec.md).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atrib/recall",
|
|
3
|
-
"version": "0.14.
|
|
4
|
-
"description": "MCP server for atrib. Lets agents query their own provable past from the local
|
|
3
|
+
"version": "0.14.5",
|
|
4
|
+
"description": "MCP server for atrib's verifiable action layer. Lets agents query their own provable past from the local mirror.",
|
|
5
5
|
"author": "atrib <hello@atrib.dev>",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"atrib",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
26
26
|
"zod": "^4.3.6",
|
|
27
|
-
"@atrib/mcp": "0.
|
|
27
|
+
"@atrib/mcp": "0.19.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^25.9.3",
|