sbor-mcp 1.1.2 → 1.1.4
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 +2 -0
- package/package.json +3 -2
- package/server.json +23 -0
- package/server.mjs +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sbor-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Check a lending rate before your agent borrows. The benchmark rate for Stacks, read from contract state. Free, no key, no rate limit.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -35,5 +35,6 @@
|
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=20"
|
|
38
|
-
}
|
|
38
|
+
},
|
|
39
|
+
"mcpName": "xyz.sbor/sbor"
|
|
39
40
|
}
|
package/server.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "xyz.sbor/sbor",
|
|
4
|
+
"description": "Check a lending rate before your agent borrows. Stacks benchmark, read from contract state. No key.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/sborxyz/sbor",
|
|
7
|
+
"source": "github",
|
|
8
|
+
"subfolder": "mcp"
|
|
9
|
+
},
|
|
10
|
+
"version": "1.1.4",
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registryType": "npm",
|
|
14
|
+
"identifier": "sbor-mcp",
|
|
15
|
+
"version": "1.1.4",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"title": "SBOR",
|
|
22
|
+
"websiteUrl": "https://sbor.xyz"
|
|
23
|
+
}
|
package/server.mjs
CHANGED
|
@@ -18,7 +18,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
|
18
18
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
19
19
|
import { z } from "zod";
|
|
20
20
|
|
|
21
|
-
const VERSION = "1.1.
|
|
21
|
+
const VERSION = "1.1.4";
|
|
22
22
|
const BASE = process.env.SBOR_BASE || "https://sbor.xyz";
|
|
23
23
|
const UA = `sbor-mcp/${VERSION}`;
|
|
24
24
|
const TIMEOUT_MS = 10_000;
|