agent-passport-system-mcp 2.16.1 → 2.17.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 +4 -4
- package/build/index.js +48 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
<img width="380" height="200" src="https://glama.ai/mcp/servers/@aeoess/agent-passport-system-mcp/badge" />
|
|
7
7
|
</a>
|
|
8
8
|
|
|
9
|
-
MCP server for the [Agent Passport System](https://github.com/aeoess/agent-passport-system) —
|
|
9
|
+
MCP server for the [Agent Passport System](https://github.com/aeoess/agent-passport-system) — governance infrastructure for the agent economy. Identity, delegation, reputation, enforcement, commerce, institutional governance.
|
|
10
10
|
|
|
11
11
|
> **🤖 For AI agents:** If you are an agent reading this, visit [aeoess.com/llms.txt](https://aeoess.com/llms.txt) for machine-readable documentation or [llms-full.txt](https://aeoess.com/llms-full.txt) for the complete technical reference. This README is designed for humans.
|
|
12
12
|
|
|
13
|
-
**
|
|
13
|
+
**121 tools** across 57 core modules + 32 v2 constitutional governance modules (separation of powers, circuit breakers, approval fatigue detection, and more). Works with any MCP client: Claude Desktop, Cursor, Windsurf, and more.
|
|
14
14
|
|
|
15
15
|
## Quick Start
|
|
16
16
|
|
|
@@ -29,7 +29,7 @@ npm install -g agent-passport-system-mcp
|
|
|
29
29
|
npx agent-passport-system-mcp setup
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
Auto-configures Claude Desktop and Cursor. Restart your AI client.
|
|
32
|
+
Auto-configures Claude Desktop and Cursor. Restart your AI client. 121 tools ready.
|
|
33
33
|
|
|
34
34
|
<details>
|
|
35
35
|
<summary>Manual config (if setup doesn't detect your client)</summary>
|
|
@@ -206,7 +206,7 @@ Layer 1 — Agent Passport Protocol (Ed25959 identity)
|
|
|
206
206
|
|
|
207
207
|
## Links
|
|
208
208
|
|
|
209
|
-
- npm SDK: [agent-passport-system](https://www.npmjs.com/package/agent-passport-system) (v1.
|
|
209
|
+
- npm SDK: [agent-passport-system](https://www.npmjs.com/package/agent-passport-system) (v1.28.0, 1707 tests)
|
|
210
210
|
- Python SDK: [agent-passport-system](https://pypi.org/project/agent-passport-system/) (v0.5.1)
|
|
211
211
|
- Paper (Protocol): [doi.org/10.5281/zenodo.18749779](https://doi.org/10.5281/zenodo.18749779)
|
|
212
212
|
- Paper (Faceted Narrowing): [doi.org/10.5281/zenodo.19260073](https://doi.org/10.5281/zenodo.19260073)
|
package/build/index.js
CHANGED
|
@@ -64,6 +64,53 @@ const STORE_PATH = join(process.env.HOME || '.', '.agent-passport-tasks.json');
|
|
|
64
64
|
const COMMS_PATH = process.env.COMMS_PATH || join(process.env.HOME || '.', 'aeoess_web', 'comms');
|
|
65
65
|
const AGENTS_PATH = process.env.AGENTS_PATH || join(process.env.HOME || '.', 'aeoess_web', 'agora', 'agents.json');
|
|
66
66
|
const AGORA_PATH = process.env.AGORA_PATH || join(process.env.HOME || '.', 'aeoess_web', 'agora', 'messages.json');
|
|
67
|
+
// Default floor YAML for issue_passport attestation (embedded so it works on remote/sandboxed servers)
|
|
68
|
+
const DEFAULT_FLOOR_YAML = `version: "0.1"
|
|
69
|
+
schema: "agent-social-contract/values-floor"
|
|
70
|
+
last_updated: "2026-02-20"
|
|
71
|
+
governance_uri: "https://aeoess.com/protocol.html"
|
|
72
|
+
floor:
|
|
73
|
+
- id: "F-001"
|
|
74
|
+
name: "Traceability"
|
|
75
|
+
principle: "Every agent action must be traceable to a human beneficiary through a cryptographic chain of delegation."
|
|
76
|
+
enforcement: { mode: inline, mechanism: "Agent Passport delegation chains + action receipts" }
|
|
77
|
+
weight: "mandatory"
|
|
78
|
+
- id: "F-002"
|
|
79
|
+
name: "Honest Identity"
|
|
80
|
+
principle: "Agents must not misrepresent their identity, capabilities, or authorization."
|
|
81
|
+
enforcement: { mode: inline, mechanism: "Passport verification, challenge-response protocol" }
|
|
82
|
+
weight: "mandatory"
|
|
83
|
+
- id: "F-003"
|
|
84
|
+
name: "Scoped Authority"
|
|
85
|
+
principle: "Agents must not take actions beyond authorized scope. Sub-delegations can only narrow scope."
|
|
86
|
+
enforcement: { mode: inline, mechanism: "Delegation scope arrays, sub-delegation narrowing" }
|
|
87
|
+
weight: "mandatory"
|
|
88
|
+
- id: "F-004"
|
|
89
|
+
name: "Revocability"
|
|
90
|
+
principle: "Human beneficiary must always retain ability to revoke agent authority with cascade."
|
|
91
|
+
enforcement: { mode: inline, mechanism: "Delegation revocation with cascade" }
|
|
92
|
+
weight: "mandatory"
|
|
93
|
+
- id: "F-005"
|
|
94
|
+
name: "Auditability"
|
|
95
|
+
principle: "All inter-agent interactions must be auditable. Action receipts provide cryptographic proof."
|
|
96
|
+
enforcement: { mode: inline, mechanism: "Signed action receipts with delegation chain" }
|
|
97
|
+
weight: "mandatory"
|
|
98
|
+
- id: "F-006"
|
|
99
|
+
name: "Non-Deception"
|
|
100
|
+
principle: "Agents must not manipulate, deceive, or coerce other agents or humans."
|
|
101
|
+
enforcement: { mode: audit, mechanism: "Reputation scoring" }
|
|
102
|
+
weight: "strong_consideration"
|
|
103
|
+
- id: "F-007"
|
|
104
|
+
name: "Proportionality"
|
|
105
|
+
principle: "Autonomy granted should be proportional to trust earned through verified action history."
|
|
106
|
+
enforcement: { mode: warn, mechanism: "Reputation scoring, delegation scope recommendations" }
|
|
107
|
+
weight: "strong_consideration"
|
|
108
|
+
- id: "F-008"
|
|
109
|
+
name: "Epistemic Security"
|
|
110
|
+
principle: "Agents must maintain intellectual honesty. Must not suppress counter-evidence or fabricate supporting evidence."
|
|
111
|
+
enforcement: { mode: audit, mechanism: "Advisory evaluation, reputation scoring" }
|
|
112
|
+
weight: "strong_consideration"
|
|
113
|
+
`;
|
|
67
114
|
const state = {
|
|
68
115
|
agentKey: process.env.AGENT_KEY || null,
|
|
69
116
|
agentRole: null,
|
|
@@ -458,7 +505,7 @@ server.tool("issue_passport", "Issue a complete agent passport with keys, signed
|
|
|
458
505
|
capabilities: args.capabilities || ['general'],
|
|
459
506
|
platform: 'mcp',
|
|
460
507
|
models: ['unknown'],
|
|
461
|
-
floor: args.attest_to_floor
|
|
508
|
+
floor: args.attest_to_floor ? (state.floorYaml || DEFAULT_FLOOR_YAML) : undefined,
|
|
462
509
|
});
|
|
463
510
|
return {
|
|
464
511
|
content: [{
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-passport-system-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"mcpName": "io.github.aeoess/agent-passport-mcp",
|
|
5
|
-
"description": "MCP server for Agent Passport System —
|
|
5
|
+
"description": "MCP server for the Agent Passport System — governance infrastructure for the agent economy. 121 tools across 86 modules. Identity, delegation, reputation, enforcement, commerce.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"agent-passport-system-mcp": "./build/bin.js",
|
|
@@ -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.
|
|
52
|
+
"agent-passport-system": "^1.28.0",
|
|
53
53
|
"zod": "^3.25.76"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|