wasm-mcp 0.1.0 → 0.1.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.
- package/README.md +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,12 +96,17 @@ version, and tags a release, which publishes the npm package
|
|
|
96
96
|
([`release.yml`](.github/workflows/release.yml)) and redeploys the
|
|
97
97
|
Worker ([`deploy-worker.yml`](.github/workflows/deploy-worker.yml)).
|
|
98
98
|
|
|
99
|
-
Maintainers:
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
99
|
+
Maintainers:
|
|
100
|
+
|
|
101
|
+
- **npm publish** uses [Trusted Publishing](https://docs.npmjs.com/trusted-publishers)
|
|
102
|
+
(OIDC) — no `NPM_TOKEN`. Configure it once on npmjs.com (wasm-mcp →
|
|
103
|
+
Settings → Trusted Publisher → GitHub Actions: org `xyzzylabs`, repo
|
|
104
|
+
`wasm-mcp`, workflow `release.yml`).
|
|
105
|
+
- **Worker deploy** needs `CLOUDFLARE_API_TOKEN` + `CLOUDFLARE_ACCOUNT_ID`.
|
|
106
|
+
- For the refresh workflow's tag push to trigger release + deploy,
|
|
107
|
+
add a `RELEASE_TOKEN` PAT (`contents: write` + `workflows`) —
|
|
108
|
+
without it, refresh still re-pins and tags, but you run release /
|
|
109
|
+
deploy manually.
|
|
105
110
|
|
|
106
111
|
## License
|
|
107
112
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wasm-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"mcpName": "io.github.xyzzylabs/wasm-mcp",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Unofficial MCP server for the WebAssembly core specification — SHA-pinned instructions, types, sections, and search. Not affiliated with the W3C WebAssembly CG.",
|