-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.17 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "agent-passport-system-mcp",
"version": "3.0.0",
"mcpName": "io.github.aeoess/agent-passport-mcp",
"description": "MCP server for the Agent Passport System — protocol-layer tools only. 142 tools (132 protocol + 10 gateway deprecation stubs). Identity, delegation, reputation, attestation, coordination, commerce, attribution primitive, attribution settlement. Tracks SDK v2.0.0. For gateway-runtime tools (ProxyGateway, AgentContext, DataEnforcementGate), use gateway.aeoess.com REST API or pin to v3.0.0.",
"type": "module",
"bin": {
"agent-passport-system-mcp": "./build/bin.js",
"agent-passport-mcp-setup": "./build/setup.js"
},
"files": [
"build",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md"
],
"scripts": {
"build": "npx tsc && chmod 755 build/bin.js build/index.js build/setup.js",
"test": "node --test tests/*.test.mjs",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build && npm test",
"postinstall": "echo '\\n🔑 Agent Passport MCP installed! Run: npx agent-passport-system-mcp setup\\n Or for zero-install remote: npx agent-passport-system-mcp setup --remote\\n'",
"postpublish": "cd ~/aeoess_web && node scripts/propagate.mjs --apply --commit 2>/dev/null || echo 'Propagation skipped (aeoess_web not found)'"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agent",
"agent-identity",
"ed25519",
"cryptographic-identity",
"delegation",
"multi-agent",
"governance",
"coordination",
"agentic-commerce",
"trust",
"claude-desktop",
"cursor",
"mcp-server",
"agent-protocol",
"typescript"
],
"author": "Tymofii Pidlisnyi <signal@aeoess.com> (https://aeoess.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/aeoess/agent-passport-mcp.git"
},
"homepage": "https://github.com/aeoess/agent-passport-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"agent-passport-system": "^2.0.0-beta.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.19.17",
"typescript": "^5.9.3"
}
}