-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
101 lines (101 loc) · 3.55 KB
/
Copy pathserver.json
File metadata and controls
101 lines (101 loc) · 3.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.tersignhq/evidence",
"description": "Counter-signed evidence records for agent commerce: receipts, verification, dispute envelopes.",
"repository": {
"url": "https://github.com/tersignhq/tersign-js",
"source": "github"
},
"version": "0.4.11",
"packages": [
{
"registryType": "npm",
"identifier": "tersign",
"version": "0.4.11",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"environmentVariables": [
{
"name": "TERSIGN_SELLER_KEY",
"description": "0x-prefixed private key the seller signs receipts with",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "TERSIGN_ISSUER_NAME",
"description": "Seller/issuer display name",
"isRequired": false,
"format": "string"
},
{
"name": "TERSIGN_ISSUER_JURISDICTION",
"description": "Seller jurisdiction (e.g. HK)",
"isRequired": false,
"format": "string"
},
{
"name": "TERSIGN_ISSUER_TAX_ID",
"description": "Seller tax/business-registration id (optional)",
"isRequired": false,
"format": "string"
},
{
"name": "TERSIGN_LEDGER_URL",
"description": "Hosted ledger base URL for counter-signing (optional; SDK works standalone)",
"isRequired": false,
"format": "string"
},
{
"name": "TERSIGN_LEDGER_API_KEY",
"description": "Ledger seller API key (required only if counter-signing)",
"isRequired": false,
"isSecret": true,
"format": "string"
},
{
"name": "TERSIGN_LEDGER_SELLER_ID",
"description": "Ledger seller id (required only if counter-signing)",
"isRequired": false,
"format": "string"
}
]
}
],
"title": "Tersign Evidence",
"websiteUrl": "https://tersign.ai",
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"license": "MIT",
"categories": [
"finance",
"security"
],
"summary": "Tersign is the evidence layer for agent commerce (B2B / machine-to-machine). Agents issue seller-signed EIP-712 receipts and action records; the hosted ledger at https://tersign.ai optionally counter-signs them into per-seller hash chains that anyone can verify without an account. Disputes export as venue-ready evidence envelopes (generic / internet-court / kleros / uma). The SDK and MCP server work fully standalone without the hosted ledger: issue and verify offline, counter-sign later. Record shapes are pinned by public conformance vectors: https://github.com/tersignhq/evidence-record-conformance (Apache-2.0, CI-tested). Verify a live counter-signed record right now: npx tersign verify 0xe5874f1ffe87f0a6dd9eb157730f67b86ee4538b125fe30fcc4e165213dd3fc4 --ledger https://tersign.ai",
"tags": [
"evidence",
"receipts",
"counter-signing",
"agent-commerce",
"agent-payments",
"x402",
"disputes",
"eip-712",
"audit-trail",
"verification"
],
"tools": [
"issue_receipt",
"verify_receipt",
"verify_compliance_record",
"record_refund",
"open_dispute",
"submit_dispute_evidence",
"adjudicate_dispute",
"get_dispute"
]
}
}
}