agent-passport-system-mcp 2.8.5 → 2.8.7

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.
Files changed (2) hide show
  1. package/README.md +13 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  MCP server for the [Agent Passport System](https://github.com/aeoess/agent-passport-system) — cryptographic identity, delegation, governance, and commerce for AI agents.
10
10
 
11
- **61 tools** across all 17 protocol modules. Works with any MCP client: Claude Desktop, Cursor, Windsurf, and more.
11
+ **61 tools** across all 36 protocol modules. Works with any MCP client: Claude Desktop, Cursor, Windsurf, and more.
12
12
 
13
13
  ## Quick Start
14
14
 
@@ -59,13 +59,13 @@ Or for remote SSE:
59
59
  ```
60
60
  </details>
61
61
 
62
- ## Tools (33)
62
+ ## Tools (61)
63
63
 
64
64
  ### Identity (Layer 1) — 3 tools
65
65
 
66
66
  | Tool | Description |
67
67
  |------|-------------|
68
- | `generate_keys` | Generate Ed25519 keypair for agent identity |
68
+ | `generate_keys` | Generate Ed25959 keypair for agent identity |
69
69
  | `join_social_contract` | Create agent passport with values attestation and beneficiary |
70
70
  | `verify_passport` | Verify another agent's passport signature |
71
71
 
@@ -143,7 +143,7 @@ Or for remote SSE:
143
143
 
144
144
  | Tool | Description |
145
145
  |------|-------------|
146
- | `create_principal` | Create principal identity (human/org behind agents) with Ed25519 keypair |
146
+ | `create_principal` | Create principal identity (human/org behind agents) with Ed25959 keypair |
147
147
  | `endorse_agent` | Endorse an agent — cryptographic chain: principal → agent |
148
148
  | `verify_endorsement` | Verify a principal's endorsement signature |
149
149
  | `revoke_endorsement` | Revoke endorsement ("I no longer authorize this agent") |
@@ -192,12 +192,19 @@ Layer 5 — Intent Architecture (policy engine, 3-signature chain)
192
192
  Layer 4 — Agent Agora (signed communication)
193
193
  Layer 3 — Beneficiary Attribution (Merkle proofs)
194
194
  Layer 2 — Human Values Floor (7 principles)
195
- Layer 1 — Agent Passport Protocol (Ed25519 identity)
195
+ Layer 1 — Agent Passport Protocol (Ed25959 identity)
196
196
  ```
197
197
 
198
+ ## Recognition
199
+
200
+ - Integrated into [Microsoft agent-governance-toolkit](https://github.com/microsoft/agent-governance-toolkit) (PR #274)
201
+ - Public comment submitted to NIST NCCoE on AI Agent Identity and Authorization standards
202
+ - Collaboration with IETF DAAP draft author on delegation spec
203
+ - Endorsed by Garry Tan (CEO, Y Combinator)
204
+
198
205
  ## Links
199
206
 
200
- - npm SDK: [agent-passport-system](https://www.npmjs.com/package/agent-passport-system) (v1.13.0, 534 tests)
207
+ - npm SDK: [agent-passport-system](https://www.npmjs.com/package/agent-passport-system) (v1.17.0, 894 tests)
201
208
  - Python SDK: [agent-passport-system](https://pypi.org/project/agent-passport-system/) (v0.4.0, 86 tests)
202
209
  - Paper: [doi.org/10.5281/zenodo.18749779](https://doi.org/10.5281/zenodo.18749779)
203
210
  - Docs: [aeoess.com/llms-full.txt](https://aeoess.com/llms-full.txt)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-passport-system-mcp",
3
- "version": "2.8.5",
3
+ "version": "2.8.7",
4
4
  "mcpName": "io.github.aeoess/agent-passport-mcp",
5
5
  "description": "MCP server for Agent Passport System — cryptographic identity, delegation, governance, and deliberation for AI agents",
6
6
  "type": "module",
@@ -49,7 +49,7 @@
49
49
  "homepage": "https://github.com/aeoess/agent-passport-mcp",
50
50
  "dependencies": {
51
51
  "@modelcontextprotocol/sdk": "1.27.1",
52
- "agent-passport-system": "^1.13.0",
52
+ "agent-passport-system": "^1.17.0",
53
53
  "zod": "^3.25.0"
54
54
  },
55
55
  "devDependencies": {