@vallum/mcp-server 0.0.1-mcp.0 → 0.1.0

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 +5 -5
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -8,10 +8,10 @@ does not directly call IOTA, Gas Station, or transaction submission APIs.
8
8
 
9
9
  ## Install
10
10
 
11
- For the npm prerelease, install:
11
+ For the npm release, install:
12
12
 
13
13
  ```sh
14
- npm install @vallum/mcp-server@next
14
+ npm install @vallum/mcp-server
15
15
  ```
16
16
 
17
17
  ## Current Status
@@ -26,8 +26,8 @@ and routes tool calls through the Vallum SDK and policy gateway. It does not
26
26
  directly call IOTA, Gas Station, or transaction submission APIs.
27
27
 
28
28
  The already-published `0.0.0-prerelease` package predates this runnable bin.
29
- The runnable MCP package is published as
30
- `@vallum/mcp-server@0.0.1-mcp.0` on the npm `next` dist-tag.
29
+ The runnable MCP package is published on the official `0.1.0` package line
30
+ through the npm `latest` dist-tag.
31
31
  Registry install plus local stdio execution is covered by
32
32
  `npm run smoke:npm-registry-mcp-stdio-consumer`.
33
33
 
@@ -62,5 +62,5 @@ const result = await server.callTool("iota.request_sponsored_transaction", {
62
62
 
63
63
  Keep `VALLUM_API_KEY`, Gas Station bearer tokens, sponsor keys, raw
64
64
  transaction bytes, and user signatures server-side. See
65
- https://github.com/0xCozart/agentic-gaskit/blob/main/docs/vallum/package-integration-guide.md
65
+ https://github.com/0xCozart/vallum/blob/main/docs/vallum/package-integration-guide.md
66
66
  for the full package map and configuration boundary.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vallum/mcp-server",
3
- "version": "0.0.1-mcp.0",
3
+ "version": "0.1.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,11 +24,11 @@
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
26
  "@modelcontextprotocol/sdk": "1.29.0",
27
- "@vallum/manifest": "0.0.0-prerelease",
28
- "@vallum/sdk": "0.0.0-prerelease"
27
+ "@vallum/manifest": "0.1.0",
28
+ "@vallum/sdk": "0.1.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@vallum/policy-gateway": "0.0.0-prerelease"
31
+ "@vallum/policy-gateway": "0.1.0"
32
32
  },
33
33
  "description": "MCP tool facade for Vallum sponsored IOTA actions.",
34
34
  "files": [
@@ -46,6 +46,6 @@
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public",
49
- "tag": "next"
49
+ "tag": "latest"
50
50
  }
51
51
  }