ust-mcp 1.0.0-rc.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 +202 -0
- package/README.md +68 -0
- package/index.mjs +85 -0
- package/package.json +43 -0
- package/server.mjs +16 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# ust-mcp
|
|
2
|
+
|
|
3
|
+
**An MCP server that lets an agent verify, create, and combine UST records — using only this server and its own key.**
|
|
4
|
+
|
|
5
|
+
`ust-mcp` exposes [`ust-protocol`](https://www.npmjs.com/package/ust-protocol) as
|
|
6
|
+
[Model Context Protocol](https://modelcontextprotocol.io) tools, so any MCP-capable agent can check that a piece
|
|
7
|
+
of state is what it claims — who published it, when, unchanged — without trusting whoever served the bytes.
|
|
8
|
+
|
|
9
|
+
> **Release candidate — `1.0.0-rc.1`.** The specification has been extensively red-teamed; an independent
|
|
10
|
+
> external cryptographic audit is pending. Suitable for evaluation. Pin exact versions.
|
|
11
|
+
|
|
12
|
+
## Run
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
npx ust-mcp
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Add to Claude Code
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
claude mcp add ust -- npx ust-mcp
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or in any MCP client config:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{ "mcpServers": { "ust": { "command": "npx", "args": ["ust-mcp"] } } }
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Tools
|
|
31
|
+
|
|
32
|
+
| Tool | Does |
|
|
33
|
+
|------|------|
|
|
34
|
+
| `ust_verify` | Verify a document (`VALID` / `INVALID` / `INDETERMINATE`); supply `genesis`+`keylog` for name authority, `proof` for anchored time |
|
|
35
|
+
| `ust_build_observation` | Build (unsigned) an observation; returns `state` + `content_hash` + `signing_input` |
|
|
36
|
+
| `ust_combine_derivation` | Build a derivation chained to other records by content-hash (auto seed) |
|
|
37
|
+
| `ust_combine_attestation` | Build an attestation over N constituents (auto Merkle root) |
|
|
38
|
+
| `ust_resolve` | Resolve name authority → `authoritative` / `self-asserted` |
|
|
39
|
+
| `ust_anchor_verify` | Verify a time-anchor's Merkle inclusion proof |
|
|
40
|
+
| `ust_key_id` | Derive a `key_id` from a public key |
|
|
41
|
+
| `ust_canon` | Canonicalize a value (the exact bytes UST hashes/signs) |
|
|
42
|
+
|
|
43
|
+
## The agent flow — build → sign → verify, entirely through the MCP
|
|
44
|
+
|
|
45
|
+
1. `ust_build_observation` → returns the unsigned `state` and the exact `signing_input` bytes.
|
|
46
|
+
2. **You** sign `signing_input` with your own Ed25519 key.
|
|
47
|
+
3. `ust_verify` → `VALID`.
|
|
48
|
+
|
|
49
|
+
The server **never holds your key**. An agent needs only this MCP and its own key.
|
|
50
|
+
|
|
51
|
+
## What it proves — and what it doesn't
|
|
52
|
+
|
|
53
|
+
UST proves **fixation, not truth**: *this publisher committed to this data, at this time, unchanged* — not that
|
|
54
|
+
the data is *correct*. You learn **whom to hold accountable** and **that nothing was tampered**. The final Bitcoin
|
|
55
|
+
time-anchor confirmation is a substrate step delegated to the operator (it needs Bitcoin access), so it is
|
|
56
|
+
deliberately not a stateless protocol tool — `ust_anchor_verify` proves *inclusion*, you (or the operator) confirm
|
|
57
|
+
the root on-chain.
|
|
58
|
+
|
|
59
|
+
## Two surfaces
|
|
60
|
+
|
|
61
|
+
This is the **protocol MCP** — universal, publisher-agnostic. A separate **product MCP** (pricing, receipts,
|
|
62
|
+
archive depth) is operated by publishers such as noosphere; the two are never mixed.
|
|
63
|
+
|
|
64
|
+
Depends on [`ust-protocol`](https://www.npmjs.com/package/ust-protocol). Spec: **https://github.com/thelabmd/UST/blob/main/spec/UST-1.0.md**
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
Apache-2.0 · © 2026 THE LAB
|
package/index.mjs
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
// ust-mcp — the agent-facing MCP surface over `ust-protocol` (+ `ustate`). Two surfaces (bd 9oov):
|
|
2
|
+
// PROTOCOL MCP = universal (create/verify/combine/resolve/anchor over the stateless base) — built here.
|
|
3
|
+
// PRODUCT MCP = noosphere business (pricing, archive depth, receipts) — separate, stubbed below.
|
|
4
|
+
// Methods are derived FROM the record's fields. This module is TRANSPORT-AGNOSTIC: it exports the tool
|
|
5
|
+
// registry + `dispatch()`; the stdio/SSE JSON-RPC server (via @modelcontextprotocol/sdk) is a thin shell the
|
|
6
|
+
// engine/deploy wires around `listTools()` + `dispatch(name, args)`.
|
|
7
|
+
import * as P from 'ust-protocol';
|
|
8
|
+
|
|
9
|
+
const doc1 = (state) => ({ ust: '1.0', state });
|
|
10
|
+
// build tools return the UNSIGNED state + the exact `signing_input` bytes; the caller (agent/operator) signs
|
|
11
|
+
// with its OWN Ed25519 key and assembles { ust, state, sig:{alg:'Ed25519', key_id, pub, sig} }. No key here.
|
|
12
|
+
const buildResult = (state) => ({ state, content_hash: P.contentHash(doc1(state)), signing_input: P.signedContent(doc1(state)) });
|
|
13
|
+
|
|
14
|
+
// ─── PROTOCOL MCP tools (universal) ──────────────────────────────────────────────────────────────────
|
|
15
|
+
export const tools = [
|
|
16
|
+
{
|
|
17
|
+
name: 'ust_verify',
|
|
18
|
+
description: 'VERIFY a UST document (three outcomes: VALID / INVALID / INDETERMINATE-unavailable). Reports the tier reached (self-asserted/pinned/authoritative), time strength, and private-partition disclosures. Supply genesis+keylog for HIGH name-authority, proof for TOP anchored time.',
|
|
19
|
+
inputSchema: { type: 'object', required: ['doc'], properties: { doc: { type: 'object' }, genesis: { type: 'object' }, keylog: { type: 'array' }, proof: { type: 'object' }, disclosures: { type: 'object' }, noForkConfirmed: { type: 'boolean' }, requireAuthoritative: { type: 'boolean' } } },
|
|
20
|
+
handler: ({ doc, genesis, keylog, proof, disclosures, noForkConfirmed, requireAuthoritative }) => {
|
|
21
|
+
const r = P.verify(doc, { genesis, keylog, disclosures, noForkConfirmed, requireAuthoritative, context: 'data' });
|
|
22
|
+
if (proof && r.result === 'VALID') { const a = P.verifyAnchor(r.content_hash, proof); r.time = { strength: a.time, status: a.status, inclusion: a.inclusion }; }
|
|
23
|
+
return r;
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'ust_build_observation',
|
|
28
|
+
description: 'CREATE (build, unsigned) an observation State from partitions; returns state + content_hash + signing_input to sign with your own Ed25519 key.',
|
|
29
|
+
inputSchema: { type: 'object', required: ['domain_shard', 'ust_id', 'key_id', 'time', 'data'], properties: { domain_shard: { type: 'string' }, ust_id: { type: 'string' }, key_id: { type: 'string' }, time: { type: 'object' }, data: { type: 'object' } } },
|
|
30
|
+
handler: ({ domain_shard, ust_id, key_id, time, data }) => buildResult(P.buildState({ domain_shard, ust_id, key_id, class: 'observation' }, time, data)),
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'ust_combine_derivation',
|
|
34
|
+
description: 'COMBINE: build (unsigned) a derivation that chains to other records by content_hash (based_on) with an auto-computed order-bearing seed.',
|
|
35
|
+
inputSchema: { type: 'object', required: ['domain_shard', 'ust_id', 'key_id', 'time', 'data', 'based_on'], properties: { domain_shard: { type: 'string' }, ust_id: { type: 'string' }, key_id: { type: 'string' }, time: { type: 'object' }, data: { type: 'object' }, based_on: { type: 'array' } } },
|
|
36
|
+
handler: ({ domain_shard, ust_id, key_id, time, data, based_on }) => buildResult(P.buildDerivation({ domain_shard, ust_id, key_id }, time, data, based_on)),
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'ust_combine_attestation',
|
|
40
|
+
description: 'COMBINE: build (unsigned) an attestation over N constituent content_hashes with an auto-computed Merkle root.',
|
|
41
|
+
inputSchema: { type: 'object', required: ['domain_shard', 'ust_id', 'key_id', 'time', 'data', 'constituents'], properties: { domain_shard: { type: 'string' }, ust_id: { type: 'string' }, key_id: { type: 'string' }, time: { type: 'object' }, data: { type: 'object' }, constituents: { type: 'array' } } },
|
|
42
|
+
handler: ({ domain_shard, ust_id, key_id, time, data, constituents }) => buildResult(P.buildAttestation({ domain_shard, ust_id, key_id }, time, data, constituents)),
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: 'ust_resolve',
|
|
46
|
+
description: 'RESOLVE name authority: given a document, its publisher genesis + key-log, and a witness no-fork confirmation, return the identity strength (authoritative / pinned / self-asserted) and status.',
|
|
47
|
+
inputSchema: { type: 'object', required: ['doc', 'genesis', 'keylog'], properties: { doc: { type: 'object' }, genesis: { type: 'object' }, keylog: { type: 'array' }, noForkConfirmed: { type: 'boolean' }, anchorTime: { type: 'string' } } },
|
|
48
|
+
handler: ({ doc, genesis, keylog, noForkConfirmed, anchorTime }) => P.resolveAuthority(doc, { genesis, keylog, noForkConfirmed, anchorTime }),
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'ust_anchor_verify',
|
|
52
|
+
description: 'ANCHOR: verify a self-contained time proof — recompute the Merkle inclusion path from a content_hash to the anchored root (substrate verification is delegated).',
|
|
53
|
+
inputSchema: { type: 'object', required: ['content_hash', 'proof'], properties: { content_hash: { type: 'string' }, proof: { type: 'object' } } },
|
|
54
|
+
handler: ({ content_hash, proof }) => P.verifyAnchor(content_hash, proof),
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'ust_key_id',
|
|
58
|
+
description: 'Derive the key_id for a public key: H("ust:keylog", raw_pubkey_bytes) — domain-separated over the base64url-decoded key.',
|
|
59
|
+
inputSchema: { type: 'object', required: ['pub'], properties: { pub: { type: 'string' } } },
|
|
60
|
+
handler: ({ pub }) => ({ key_id: P.keyId(pub) }),
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: 'ust_canon',
|
|
64
|
+
description: 'Canonicalize a JSON value (JCS tightened): the exact bytes UST hashes/signs. Utility for building your own signer.',
|
|
65
|
+
inputSchema: { type: 'object', required: ['value'], properties: { value: {} } },
|
|
66
|
+
handler: ({ value }) => ({ canonical: P.canon(value) }),
|
|
67
|
+
},
|
|
68
|
+
];
|
|
69
|
+
|
|
70
|
+
const toolMap = Object.fromEntries(tools.map(t => [t.name, t]));
|
|
71
|
+
export const listTools = () => tools.map(({ name, description, inputSchema }) => ({ name, description, inputSchema }));
|
|
72
|
+
// dispatch a tool call → MCP-style result. Never throws; a handler error becomes an isError result (fail-closed).
|
|
73
|
+
export function dispatch(name, args = {}) {
|
|
74
|
+
const t = toolMap[name];
|
|
75
|
+
if (!t) return { isError: true, error: 'unknown tool: ' + name };
|
|
76
|
+
try { return { result: t.handler(args) }; }
|
|
77
|
+
catch (e) { return { isError: true, error: e.message || String(e) }; }
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// ─── PRODUCT MCP (noosphere business) — separate surface, stubbed. Never mixed with the universal protocol MCP.
|
|
81
|
+
export const productTools = [
|
|
82
|
+
{ name: 'noosphere_price', description: 'Quote a receipt/archive-depth price (x402 unit-of-sale). [stub — product MCP]', stub: true },
|
|
83
|
+
{ name: 'noosphere_receipt', description: 'Issue a signed receipt for a UST derivation/attestation. [stub — product MCP]', stub: true },
|
|
84
|
+
{ name: 'noosphere_archive', description: 'Fetch temporal-depth history behind the paywall. [stub — product MCP]', stub: true },
|
|
85
|
+
];
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ust-mcp",
|
|
3
|
+
"version": "1.0.0-rc.1",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server for UST — agent-facing verbs over ust-protocol: verify, build/create, combine, resolve name-authority, anchor. An agent needs only this server plus its own key.",
|
|
5
|
+
"author": "THE LAB (https://thelab.md)",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./index.mjs",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./index.mjs"
|
|
10
|
+
},
|
|
11
|
+
"bin": {
|
|
12
|
+
"ust-mcp": "./server.mjs"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"index.mjs",
|
|
16
|
+
"server.mjs",
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"ust",
|
|
22
|
+
"mcp",
|
|
23
|
+
"model-context-protocol",
|
|
24
|
+
"agent",
|
|
25
|
+
"verification",
|
|
26
|
+
"trust-infrastructure"
|
|
27
|
+
],
|
|
28
|
+
"license": "Apache-2.0",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
34
|
+
"ust-protocol": "^1.0.0-rc.1"
|
|
35
|
+
},
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/thelabmd/UST.git",
|
|
39
|
+
"directory": "packages/ust-mcp"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/thelabmd/UST/tree/main/packages/ust-mcp#readme",
|
|
42
|
+
"bugs": "https://github.com/thelabmd/UST/issues"
|
|
43
|
+
}
|
package/server.mjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// ust-mcp stdio server — mounts the protocol tool registry over MCP (JSON-RPC on stdio). Run as `npx ust-mcp`
|
|
3
|
+
// or wire into any MCP client. Transport is the only stateful part; the tools themselves are ust-protocol.
|
|
4
|
+
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
5
|
+
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
6
|
+
import { ListToolsRequestSchema, CallToolRequestSchema } from '@modelcontextprotocol/sdk/types.js';
|
|
7
|
+
import { listTools, dispatch } from './index.mjs';
|
|
8
|
+
|
|
9
|
+
const server = new Server({ name: 'ust-mcp', version: '1.0.0-rc.1' }, { capabilities: { tools: {} } });
|
|
10
|
+
server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: listTools() }));
|
|
11
|
+
server.setRequestHandler(CallToolRequestSchema, async (req) => {
|
|
12
|
+
const r = dispatch(req.params.name, req.params.arguments || {});
|
|
13
|
+
return { content: [{ type: 'text', text: JSON.stringify(r.result ?? { error: r.error }, null, 2) }], isError: !!r.isError };
|
|
14
|
+
});
|
|
15
|
+
await server.connect(new StdioServerTransport());
|
|
16
|
+
console.error('ust-mcp stdio server ready — ' + listTools().length + ' tools');
|