@functional-systems/lambdadb-mcp 0.1.0-dev.4 → 0.1.0-dev.5
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/CONTRIBUTING.md +3 -1
- package/README.md +6 -4
- package/RELEASING.md +29 -10
- package/package.json +2 -2
package/CONTRIBUTING.md
CHANGED
|
@@ -39,7 +39,9 @@ by this change. Validation has read-only permissions and no service credentials.
|
|
|
39
39
|
|
|
40
40
|
Keep develop's reviewed base in `X.Y.Z-dev.N` form. Automatic dev publication
|
|
41
41
|
requires separate bootstrap, package-specific npm trust and an explicit repository
|
|
42
|
-
variable
|
|
42
|
+
variable. Setup is complete and `NPM_DEV_PUBLISH_ENABLED=true` as verified on
|
|
43
|
+
2026-09-20 (KST); merging into develop can publish a new dev version after CI
|
|
44
|
+
succeeds. PRs and manual workflow runs cannot publish.
|
|
43
45
|
Follow [RELEASING.md](RELEASING.md) for every publication action.
|
|
44
46
|
|
|
45
47
|
Prepare rc/stable metadata on a release branch and review it into `main`. Promote
|
package/README.md
CHANGED
|
@@ -14,9 +14,11 @@ MCP server for LambdaDB using the official TypeScript MCP SDK and the official L
|
|
|
14
14
|
Package: `@functional-systems/lambdadb-mcp`. Executable: `lambdadb-mcp`.
|
|
15
15
|
Requires Node.js >=22.14.0; CI tests the minimum and current Node 22/24 LTS.
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
The package is published on the `dev` channel. Until a stable release exists,
|
|
18
|
+
select `@dev` or an exact published prerelease. As verified on 2026-09-20 (KST),
|
|
19
|
+
`dev` resolves to `0.1.0-dev.4`; `latest` still points to the bootstrap prerelease
|
|
20
|
+
`0.1.0-dev.1` and does not indicate a stable release. See
|
|
21
|
+
[release status and policy](RELEASING.md).
|
|
20
22
|
|
|
21
23
|
```sh
|
|
22
24
|
npx --yes @functional-systems/lambdadb-mcp@dev
|
|
@@ -137,7 +139,7 @@ tarball in a clean consumer directory and repeats the tool contracts over real
|
|
|
137
139
|
stdio, checking version identity, config errors, stdout and process termination.
|
|
138
140
|
CI validates Node 22.14.0, current 22.x and 24.x on PRs and pushes to develop/main.
|
|
139
141
|
See [CONTRIBUTING.md](CONTRIBUTING.md) and [RELEASING.md](RELEASING.md) for checks,
|
|
140
|
-
release policy and the
|
|
142
|
+
release policy and the explicitly enabled automatic dev publication gate.
|
|
141
143
|
|
|
142
144
|
For a live smoke, explicitly designate a disposable **development** project and
|
|
143
145
|
configure its credentials in `.env.local` with `LAMBDADB_MCP_ENABLE_WRITE_TOOLS=true`.
|
package/RELEASING.md
CHANGED
|
@@ -2,13 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
## Status and policy
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
As verified on **2026-09-20 (KST)**:
|
|
6
|
+
|
|
7
|
+
- Public package: [`@functional-systems/lambdadb-mcp`](https://www.npmjs.com/package/@functional-systems/lambdadb-mcp).
|
|
8
|
+
- Manual bootstrap `0.1.0-dev.1` is complete. Organization publication rights were
|
|
9
|
+
confirmed during bootstrap; do not repeat first publication.
|
|
10
|
+
- Package-specific Trusted Publishing is working: GitHub Actions published
|
|
11
|
+
`0.1.0-dev.4` with OIDC and provenance in
|
|
12
|
+
[run 35434355648, attempt 2](https://github.com/lambdadb/lambdadb-mcp/actions/runs/35434355648/attempts/2).
|
|
13
|
+
- Automatic dev publication is enabled (`NPM_DEV_PUBLISH_ENABLED=true`). Eligible
|
|
14
|
+
develop pushes publish after validation; a documentation-only merge can also
|
|
15
|
+
produce a new dev version.
|
|
16
|
+
- `dev=0.1.0-dev.4`; `latest=0.1.0-dev.1` is still the bootstrap prerelease.
|
|
17
|
+
There is no rc/stable release or GitHub Release yet. Prefer `@dev` or an exact
|
|
18
|
+
published version until stable is available.
|
|
19
|
+
- main still needs the publishing workflow and reviewed release metadata before
|
|
20
|
+
rc/stable publication. See [explicit rc/stable publication](#explicit-rcstable-publication).
|
|
21
|
+
- See the [validation record](https://github.com/lambdadb/lambdadb-mcp/blob/develop/docs/validation/2026-09-20-npm.md) for package,
|
|
22
|
+
provenance, and live-service evidence and their separate scopes.
|
|
23
|
+
|
|
24
|
+
These are dated observations, not fixed channel values. Recheck the registry and
|
|
25
|
+
repository variable before the next release. The bootstrap and trust sections
|
|
26
|
+
below describe setup and recovery; they are not outstanding setup tasks.
|
|
12
27
|
|
|
13
28
|
| Source | Version | Trigger | npm dist-tag |
|
|
14
29
|
| --- | --- | --- | --- |
|
|
@@ -55,7 +70,10 @@ Live tests are optional for PR validation, but release owners must explicitly
|
|
|
55
70
|
record performed or not performed. They require a designated development project,
|
|
56
71
|
not merely the presence of an existing `.env.local` or credential. See README
|
|
57
72
|
for `LAMBDADB_RUN_LIVE_TESTS=1` and project confirmation. Do not load production
|
|
58
|
-
credentials into package/CI tests.
|
|
73
|
+
credentials into package/CI tests. Authorized development-project live tests have
|
|
74
|
+
passed; the [validation record](https://github.com/lambdadb/lambdadb-mcp/blob/develop/docs/validation/2026-09-20-npm.md) identifies the
|
|
75
|
+
tested source and installed package. These results do not automatically validate
|
|
76
|
+
a future release candidate.
|
|
59
77
|
|
|
60
78
|
## First package publication: separate manual bootstrap
|
|
61
79
|
|
|
@@ -112,8 +130,9 @@ It has no npm token secret. See [npm Trusted Publishing](https://docs.npmjs.com/
|
|
|
112
130
|
Leave repository variable `NPM_DEV_PUBLISH_ENABLED` unset or false through
|
|
113
131
|
bootstrap and trust setup. Only after authorizing ongoing develop publication,
|
|
114
132
|
set it to `true` in GitHub **Settings → Secrets and variables → Actions → Variables**.
|
|
115
|
-
This
|
|
116
|
-
|
|
133
|
+
This repository completed that activation; the variable was verified as `true` on
|
|
134
|
+
2026-09-20 (KST). The next eligible develop push, or a rerun of its existing push
|
|
135
|
+
workflow, can publish. `workflow_dispatch`, PRs and main
|
|
117
136
|
pushes validate only. Disable the variable to stop future automatic publication;
|
|
118
137
|
do not cancel an in-progress registry write as rollback.
|
|
119
138
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functional-systems/lambdadb-mcp",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "MCP server for LambdaDB data plane",
|
|
6
6
|
"type": "module",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"access": "public",
|
|
61
61
|
"registry": "https://registry.npmjs.org"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "f6a58dcdcd56590137d3a36fc588d0e13fa7f6cb"
|
|
64
64
|
}
|