@emilia-protocol/mcp-server 0.1.0 → 1.0.1
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 +190 -0
- package/README.md +969 -34
- package/auto-receipt.js +402 -0
- package/index.js +1552 -246
- package/package.json +41 -11
package/package.json
CHANGED
|
@@ -1,30 +1,60 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilia-protocol/mcp-server",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"mcpName": "io.github.emiliaprotocol/mcp-server",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"description": "EMILIA Protocol MCP Server — trust enforcement for high-risk actions via MCP. Pre-action binding, policy-bound verification, and accountable human signoff.",
|
|
6
|
+
"main": "index.js",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|
|
8
9
|
"emilia-mcp": "./index.js"
|
|
9
10
|
},
|
|
10
|
-
"
|
|
11
|
+
"files": [
|
|
12
|
+
"index.js",
|
|
13
|
+
"auto-receipt.js",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
11
17
|
"scripts": {
|
|
12
|
-
"
|
|
18
|
+
"test": "vitest run"
|
|
13
19
|
},
|
|
14
20
|
"dependencies": {
|
|
15
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
21
|
+
"@modelcontextprotocol/sdk": "^1.29.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"vitest": "^4.1.8"
|
|
16
25
|
},
|
|
17
26
|
"keywords": [
|
|
18
27
|
"mcp",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
28
|
+
"model-context-protocol",
|
|
29
|
+
"human-in-the-loop",
|
|
30
|
+
"human-signoff",
|
|
31
|
+
"webauthn",
|
|
32
|
+
"passkey",
|
|
33
|
+
"irreversible-actions",
|
|
34
|
+
"payment-guard",
|
|
35
|
+
"agent-accountability",
|
|
36
|
+
"agent-safety",
|
|
22
37
|
"ai-agents",
|
|
23
|
-
"
|
|
38
|
+
"trust-receipt",
|
|
39
|
+
"offline-verification",
|
|
40
|
+
"separation-of-duties",
|
|
41
|
+
"policy-evaluation",
|
|
42
|
+
"delegation",
|
|
43
|
+
"emilia-protocol"
|
|
24
44
|
],
|
|
45
|
+
"license": "Apache-2.0",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=18"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
},
|
|
25
52
|
"repository": {
|
|
26
53
|
"type": "git",
|
|
27
54
|
"url": "https://github.com/emiliaprotocol/emilia-protocol"
|
|
28
55
|
},
|
|
29
|
-
"homepage": "https://emiliaprotocol.ai"
|
|
56
|
+
"homepage": "https://emiliaprotocol.ai",
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/emiliaprotocol/emilia-protocol/issues"
|
|
59
|
+
}
|
|
30
60
|
}
|