@xrpl-utilities/mcp 0.2.70 → 0.2.71
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/README.md +6 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -101,8 +101,9 @@ tool definitions interactively.
|
|
|
101
101
|
## Releases
|
|
102
102
|
|
|
103
103
|
Releases are cut by tag push. The `Release` workflow builds, validates
|
|
104
|
-
that `package.json` version matches the tag,
|
|
105
|
-
|
|
104
|
+
that `package.json` version matches the tag, publishes to npm with
|
|
105
|
+
sigstore provenance, then mirrors the same version to the official
|
|
106
|
+
MCP Registry via GitHub OIDC (no extra secrets needed).
|
|
106
107
|
|
|
107
108
|
```bash
|
|
108
109
|
npm version patch # or minor / major
|
|
@@ -112,7 +113,9 @@ git push --follow-tags # pushes commit + tag, CI does the rest
|
|
|
112
113
|
The published artifact appears at
|
|
113
114
|
[npmjs.com/package/@xrpl-utilities/mcp](https://www.npmjs.com/package/@xrpl-utilities/mcp)
|
|
114
115
|
within ~90 seconds. Provenance attestation is visible on the package
|
|
115
|
-
page as a green check.
|
|
116
|
+
page as a green check. The MCP Registry entry lives at
|
|
117
|
+
[registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.XRPL-Utilities/mcp)
|
|
118
|
+
under the reverse-DNS name `io.github.XRPL-Utilities/mcp`.
|
|
116
119
|
|
|
117
120
|
## License
|
|
118
121
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xrpl-utilities/mcp",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.2.71",
|
|
4
|
+
"mcpName": "io.github.XRPL-Utilities/mcp",
|
|
5
|
+
"description": "Model Context Protocol server for the XRPL-Utilities portfolio: Sentinel (wallet classifier), Pulse (signal feed), Telemetry (supply + utility floor), Trust (XLS-70/80/81 directory), Vault (RWA tracker), and Flows (ETF AUM vs XRPL flow correlation). Exposes each service's read endpoints as MCP tools so AI agents can discover and use them via stdio (Claude Desktop) or HTTP/SSE (hosted at mcp.xrpl-utilities.io). Stateless passthrough. Caller provides their own x402 payment header.",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|