ust-mcp 1.0.0-rc.1 → 1.0.0-rc.2

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,19 +12,19 @@ of state is what it claims — who published it, when, unchanged — without tru
12
12
  ## Run
13
13
 
14
14
  ```
15
- npx ust-mcp
15
+ npx -y ust-mcp@rc
16
16
  ```
17
17
 
18
18
  ## Add to Claude Code
19
19
 
20
20
  ```
21
- claude mcp add ust -- npx ust-mcp
21
+ claude mcp add ust -- npx -y ust-mcp@rc
22
22
  ```
23
23
 
24
24
  Or in any MCP client config:
25
25
 
26
26
  ```json
27
- { "mcpServers": { "ust": { "command": "npx", "args": ["ust-mcp"] } } }
27
+ { "mcpServers": { "ust": { "command": "npx", "args": ["-y", "ust-mcp@rc"] } } }
28
28
  ```
29
29
 
30
30
  ## Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ust-mcp",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0-rc.2",
4
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
5
  "author": "THE LAB (https://thelab.md)",
6
6
  "type": "module",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@modelcontextprotocol/sdk": "^1.0.0",
34
- "ust-protocol": "^1.0.0-rc.1"
34
+ "ust-protocol": "^1.0.0-rc.2"
35
35
  },
36
36
  "repository": {
37
37
  "type": "git",