sbor-mcp 1.1.3 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- <!-- mcp-name: io.github.sborxyz/sbor -->
1
+ <!-- mcp-name: xyz.sbor/sbor -->
2
2
 
3
3
  # SBOR MCP server
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbor-mcp",
3
- "version": "1.1.3",
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": {
@@ -36,5 +36,5 @@
36
36
  "engines": {
37
37
  "node": ">=20"
38
38
  },
39
- "mcpName": "io.github.sborxyz/sbor"
39
+ "mcpName": "xyz.sbor/sbor"
40
40
  }
package/server.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.sborxyz/sbor",
3
+ "name": "xyz.sbor/sbor",
4
4
  "description": "Check a lending rate before your agent borrows. Stacks benchmark, read from contract state. No key.",
5
5
  "repository": {
6
6
  "url": "https://github.com/sborxyz/sbor",
7
7
  "source": "github",
8
8
  "subfolder": "mcp"
9
9
  },
10
- "version": "1.1.3",
10
+ "version": "1.1.4",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "sbor-mcp",
15
- "version": "1.1.3",
15
+ "version": "1.1.4",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }
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.3";
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;