@emilia-protocol/mcp-server 0.1.0 → 1.0.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.
Files changed (4) hide show
  1. package/README.md +967 -34
  2. package/auto-receipt.js +402 -0
  3. package/index.js +1411 -245
  4. package/package.json +40 -10
package/package.json CHANGED
@@ -1,30 +1,60 @@
1
1
  {
2
2
  "name": "@emilia-protocol/mcp-server",
3
- "version": "0.1.0",
4
- "description": "EMILIA Protocol MCP Server — Trust layer tools for AI agents. Check scores, submit receipts, verify transactions.",
5
- "license": "Apache-2.0",
3
+ "mcpName": "io.github.emiliaprotocol/mcp-server",
4
+ "version": "1.0.0",
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
- "main": "index.js",
11
+ "files": [
12
+ "index.js",
13
+ "auto-receipt.js",
14
+ "README.md"
15
+ ],
11
16
  "scripts": {
12
- "start": "node index.js"
17
+ "test": "vitest run"
13
18
  },
14
19
  "dependencies": {
15
- "@modelcontextprotocol/sdk": "^1.0.0"
20
+ "@modelcontextprotocol/sdk": "^1.29.0"
21
+ },
22
+ "devDependencies": {
23
+ "vitest": "^4.1.8"
16
24
  },
17
25
  "keywords": [
18
26
  "mcp",
19
- "emilia",
27
+ "model-context-protocol",
20
28
  "trust",
21
- "reputation",
29
+ "trust-profile",
30
+ "trust-score",
31
+ "policy-evaluation",
32
+ "install-preflight",
33
+ "appeals",
34
+ "disputes",
35
+ "software-trust",
36
+ "marketplace-trust",
37
+ "machine-actors",
38
+ "counterparties",
22
39
  "ai-agents",
23
- "agentic-commerce"
40
+ "behavioral-receipts",
41
+ "emilia-protocol",
42
+ "agent-safety",
43
+ "delegation"
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
  }