aipou-mcp-server 0.2.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/server.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.0xddneto/ai-proof-of-us",
4
+ "title": "AI Proof of Us",
5
+ "description": "Private signed AI task receipts with replay checks and optional validated AIPOU claims.",
6
+ "websiteUrl": "https://github.com/0xddneto/AI-Proof-of-Us",
7
+ "repository": {
8
+ "url": "https://github.com/0xddneto/AI-Proof-of-Us",
9
+ "source": "github",
10
+ "subfolder": "mcp-server"
11
+ },
12
+ "version": "0.2.0",
13
+ "packages": [
14
+ {
15
+ "registryType": "npm",
16
+ "identifier": "aipou-mcp-server",
17
+ "version": "0.2.0",
18
+ "transport": {
19
+ "type": "stdio"
20
+ },
21
+ "environmentVariables": [
22
+ {
23
+ "description": "Private key for a new dedicated farming wallet. Never use a primary wallet.",
24
+ "isRequired": true,
25
+ "format": "string",
26
+ "isSecret": true,
27
+ "name": "AIPOU_AGENT_PRIVATE_KEY"
28
+ },
29
+ {
30
+ "description": "AIPOU token contract address on the configured network.",
31
+ "isRequired": true,
32
+ "format": "string",
33
+ "isSecret": false,
34
+ "name": "AIPOU_CONTRACT_ADDRESS"
35
+ },
36
+ {
37
+ "description": "AIPOU claims contract address on the configured network.",
38
+ "isRequired": true,
39
+ "format": "string",
40
+ "isSecret": false,
41
+ "name": "AIPOU_CLAIMS_ADDRESS"
42
+ },
43
+ {
44
+ "description": "Optional Base-compatible JSON-RPC endpoint.",
45
+ "isRequired": false,
46
+ "format": "string",
47
+ "isSecret": false,
48
+ "name": "AIPOU_RPC_URL"
49
+ },
50
+ {
51
+ "description": "Optional local directory for receipt and collector state.",
52
+ "isRequired": false,
53
+ "format": "string",
54
+ "isSecret": false,
55
+ "name": "AIPOU_DATA_DIR"
56
+ }
57
+ ]
58
+ }
59
+ ]
60
+ }