agent-passport-system-mcp 3.2.4 → 3.3.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/LICENSE +1 -1
- package/README.md +4 -4
- package/build/__tests__/capability-expiry.test.js +1 -1
- package/build/index.js +1 -1
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
|
|
176
176
|
END OF TERMS AND CONDITIONS
|
|
177
177
|
|
|
178
|
-
Copyright
|
|
178
|
+
Copyright 2026 Tymofii Pidlisnyi
|
|
179
179
|
|
|
180
180
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
181
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ APS_PROFILE=essential npx agent-passport-system-mcp
|
|
|
16
16
|
|
|
17
17
|
Available profiles: essential (default), identity, governance, coordination, commerce, data, gateway, comms, minimal, full.
|
|
18
18
|
|
|
19
|
-
> **For AI agents:** visit [
|
|
19
|
+
> **For AI agents:** visit [agent-passport.org/llms.txt](https://agent-passport.org/llms.txt) for machine-readable documentation or [llms-full.txt](https://agent-passport.org/llms-full.txt) for the complete technical reference. MCP discovery: [.well-known/mcp.json](https://agent-passport.org/.well-known/mcp.json).
|
|
20
20
|
|
|
21
21
|
Works with any MCP client: Claude Desktop, Claude Code, Cursor, Windsurf, and more. Full surface area under `APS_PROFILE=full`: 150 tools across the protocol surface, including Wave 1 accountability primitives (Ed25519 ActionReceipt, AuthorityBoundaryReceipt, CustodyReceipt, ContestabilityReceipt, APSBundle, strict RFC 8785 JCS for interop-facing receipts, byte-match across implementations). Independently cited by [PDR in Production preprint (Nanook & Gerundium)](https://doi.org/10.5281/zenodo.19323172).
|
|
22
22
|
|
|
@@ -215,9 +215,9 @@ Layer 1 — Agent Passport Protocol (Ed25519 identity)
|
|
|
215
215
|
|
|
216
216
|
## Links
|
|
217
217
|
|
|
218
|
-
- npm SDK: [agent-passport-system](https://www.npmjs.com/package/agent-passport-system) (
|
|
218
|
+
- npm SDK: [agent-passport-system](https://www.npmjs.com/package/agent-passport-system) (v3.2.0, 4,026 tests)
|
|
219
219
|
- Python SDK: [agent-passport-system](https://pypi.org/project/agent-passport-system/) (v2.4.0a3 pre-release; v2.3.0 stable)
|
|
220
|
-
- Go SDK: [agent-passport-go](https://pkg.go.dev/github.com/aeoess/agent-passport-go) (v0.2.0-alpha.
|
|
220
|
+
- Go SDK: [agent-passport-go](https://pkg.go.dev/github.com/aeoess/agent-passport-go) (v0.2.0-alpha.3; `go get github.com/aeoess/agent-passport-go@v0.2.0-alpha.3`)
|
|
221
221
|
- Paper (Social Contract): [doi.org/10.5281/zenodo.18749779](https://doi.org/10.5281/zenodo.18749779)
|
|
222
222
|
- Paper (Monotonic Narrowing): [doi.org/10.5281/zenodo.18932404](https://doi.org/10.5281/zenodo.18932404)
|
|
223
223
|
- Paper (Faceted Authority Attenuation): [doi.org/10.5281/zenodo.19260073](https://doi.org/10.5281/zenodo.19260073)
|
|
@@ -227,7 +227,7 @@ Layer 1 — Agent Passport Protocol (Ed25519 identity)
|
|
|
227
227
|
- Paper (Cognitive Attestation): [doi.org/10.5281/zenodo.19646276](https://doi.org/10.5281/zenodo.19646276)
|
|
228
228
|
- Paper (The Evidence-Safety Gap): [doi.org/10.5281/zenodo.19914628](https://doi.org/10.5281/zenodo.19914628)
|
|
229
229
|
- IETF Internet-Draft: `draft-pidlisnyi-aps-01`
|
|
230
|
-
- Docs: [aeoess.com/llms-full.txt](https://
|
|
230
|
+
- Docs: [aeoess.com/llms-full.txt](https://agent-passport.org/llms-full.txt)
|
|
231
231
|
- Agora: [aeoess.com/agora.html](https://aeoess.com/agora.html)
|
|
232
232
|
|
|
233
233
|
## License
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright
|
|
1
|
+
// Copyright 2026 Tymofii Pidlisnyi. Apache-2.0 license. See LICENSE.
|
|
2
2
|
// Regression: a capability SinkChallenge carries a signed expires_at that no
|
|
3
3
|
// verifier enforced, so an expired permit stayed redeemable forever.
|
|
4
4
|
// verifySinkChallenge / verifyChallengeReceipt now reject an expired challenge.
|
package/build/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright
|
|
2
|
+
// Copyright 2026 Tymofii Pidlisnyi. Apache-2.0 license. See LICENSE.
|
|
3
3
|
// ══════════════════════════════════════════════════════════════
|
|
4
4
|
// Agent Passport MCP Server v2.0
|
|
5
5
|
// ══════════════════════════════════════════════════════════════
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-passport-system-mcp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"mcpName": "io.github.aeoess/agent-passport-mcp",
|
|
5
|
-
"description": "MCP server for the Agent Passport System - protocol-layer tools only. 150 tools (132 protocol + 10 gateway deprecation stubs). Identity, delegation, reputation, attestation, coordination, commerce, attribution primitive, attribution settlement. Tracks SDK
|
|
5
|
+
"description": "MCP server for the Agent Passport System - protocol-layer tools only. 150 tools (132 protocol + 10 gateway deprecation stubs). Identity, delegation, reputation, attestation, coordination, commerce, attribution primitive, attribution settlement. Tracks SDK v3.2.0 (Wave 1 accountability primitives + Phase 4.1 payment rails shipped in SDK; MCP rail-tool exposure deferred). For gateway-runtime tools (ProxyGateway, AgentContext, DataEnforcementGate), use gateway.aeoess.com REST API or pin to v3.1.x.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"agent-passport-system-mcp": "./build/bin.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"homepage": "https://github.com/aeoess/agent-passport-mcp",
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
53
|
-
"agent-passport-system": "^
|
|
53
|
+
"agent-passport-system": "^3.3.0",
|
|
54
54
|
"zod": "^3.25.76"
|
|
55
55
|
},
|
|
56
56
|
"overrides": {
|