capacity-attest 0.2.0 → 0.4.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/package.json CHANGED
@@ -1,55 +1,56 @@
1
- {
2
- "name": "capacity-attest",
3
- "version": "0.2.0",
4
- "description": "MCP server for capacity-delivery attestations: after an x402 payment for compute capacity (GPU-hours, storage, API credits, bandwidth), the paying agent leaves a signed, factual claim of what was actually delivered, so other agents can check a seller's delivery history before paying. No reputation score, no judgment, no financial instrument.",
5
- "keywords": [
6
- "mcp",
7
- "model-context-protocol",
8
- "x402",
9
- "agent-to-agent",
10
- "agent-commerce",
11
- "capacity-trade",
12
- "attestation",
13
- "provenance",
14
- "ai-agent"
15
- ],
16
- "author": "holistis",
17
- "license": "MIT",
18
- "homepage": "https://tokenizen.nl",
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/holistis/tokenizen.git",
22
- "directory": "packages/capacity-attest"
23
- },
24
- "mcpName": "io.github.holistis/capacity-attest",
25
- "type": "module",
26
- "main": "./dist/index.js",
27
- "bin": {
28
- "capacity-attest": "dist/index.js"
29
- },
30
- "files": [
31
- "dist",
32
- "README.md"
33
- ],
34
- "engines": {
35
- "node": ">=20"
36
- },
37
- "scripts": {
38
- "build": "tsc -p tsconfig.json && node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
39
- "typecheck": "tsc -p tsconfig.json --noEmit",
40
- "test": "vitest run",
41
- "start": "node dist/index.js",
42
- "demo": "tsx examples/demo.ts"
43
- },
44
- "dependencies": {
45
- "@modelcontextprotocol/sdk": "^1.30.0",
46
- "ethers": "^6.13.0",
47
- "zod": "^4.5.2"
48
- },
49
- "devDependencies": {
50
- "@types/node": "^22.10.5",
51
- "tsx": "^4.19.2",
52
- "typescript": "^5.7.3",
53
- "vitest": "^4.1.11"
54
- }
55
- }
1
+ {
2
+ "name": "capacity-attest",
3
+ "version": "0.4.0",
4
+ "description": "MCP server for capacity-delivery attestations: after an x402 payment for compute capacity (GPU-hours, storage, API credits, bandwidth), the paying agent leaves a signed, factual claim of what was actually delivered, so other agents can check a seller's delivery history before paying. No reputation score, no judgment, no financial instrument.",
5
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "x402",
9
+ "agent-to-agent",
10
+ "agent-commerce",
11
+ "capacity-trade",
12
+ "attestation",
13
+ "provenance",
14
+ "ai-agent"
15
+ ],
16
+ "author": "holistis",
17
+ "license": "MIT",
18
+ "homepage": "https://tokenizen.nl",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/holistis/tokenizen.git",
22
+ "directory": "packages/capacity-attest"
23
+ },
24
+ "mcpName": "io.github.holistis/capacity-attest",
25
+ "type": "module",
26
+ "main": "./dist/index.js",
27
+ "bin": {
28
+ "capacity-attest": "dist/index.js"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md"
33
+ ],
34
+ "engines": {
35
+ "node": ">=20"
36
+ },
37
+ "scripts": {
38
+ "build": "tsc -p tsconfig.json && node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
39
+ "typecheck": "tsc -p tsconfig.json --noEmit",
40
+ "test": "vitest run",
41
+ "start": "node dist/index.js",
42
+ "demo": "tsx examples/demo.ts",
43
+ "fixture": "tsx examples/completeness-fixture.ts"
44
+ },
45
+ "dependencies": {
46
+ "@modelcontextprotocol/sdk": "^1.30.0",
47
+ "ethers": "^6.13.0",
48
+ "zod": "^4.5.2"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "^22.10.5",
52
+ "tsx": "^4.19.2",
53
+ "typescript": "^5.7.3",
54
+ "vitest": "^4.1.11"
55
+ }
56
+ }