@functional-systems/lambdadb-mcp 0.1.0-dev.4 → 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.
- package/CHANGELOG.md +4 -3
- package/CONTRIBUTING.md +3 -1
- package/README.md +6 -4
- package/RELEASING.md +31 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## [0.1.0] - 2026-09-20
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
- Add
|
|
5
|
+
- Package `@functional-systems/lambdadb-mcp` and the `lambdadb-mcp` executable for npm/npx distribution under Apache-2.0.
|
|
6
|
+
- Add OIDC publishing for develop, rc and stable channels with exact tarball consumer checks; automatic dev publishing is enabled.
|
|
7
7
|
- Derive the MCP server version from package metadata and close the process on stdio disconnect or termination.
|
|
8
8
|
- Raise the supported Node.js floor to 22.14.0; verify the minimum and current Node 22/24 LTS.
|
|
9
9
|
- Preserve the existing environment variables, read-only default and explicit write opt-in.
|
|
10
10
|
- Require explicit development-project confirmation before running the optional live smoke.
|
|
11
11
|
- Refresh compatible locked dependencies; the audited dependency tree has no known advisories at validation time.
|
|
12
|
+
- Record successful npm-installed stdio and authorized development-service validation of the dev distribution.
|
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.5`; `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,30 @@
|
|
|
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.5`; `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
|
+
- The `0.1.0` stable candidate carries the publishing workflow and matching dated
|
|
20
|
+
release metadata for main review. Merging the candidate validates main but does
|
|
21
|
+
not publish a package. Publication requires the explicit GitHub release
|
|
22
|
+
`v0.1.0` with `prerelease: false`, which publishes to `latest`; see [explicit rc/stable publication](#explicit-rcstable-publication).
|
|
23
|
+
- See the [validation record](https://github.com/lambdadb/lambdadb-mcp/blob/develop/docs/validation/2026-09-20-npm.md) for package,
|
|
24
|
+
provenance, and live-service evidence and their separate scopes.
|
|
25
|
+
|
|
26
|
+
These are dated observations, not fixed channel values. Recheck the registry and
|
|
27
|
+
repository variable before the next release. The bootstrap and trust sections
|
|
28
|
+
below describe setup and recovery; they are not outstanding setup tasks.
|
|
12
29
|
|
|
13
30
|
| Source | Version | Trigger | npm dist-tag |
|
|
14
31
|
| --- | --- | --- | --- |
|
|
@@ -55,7 +72,10 @@ Live tests are optional for PR validation, but release owners must explicitly
|
|
|
55
72
|
record performed or not performed. They require a designated development project,
|
|
56
73
|
not merely the presence of an existing `.env.local` or credential. See README
|
|
57
74
|
for `LAMBDADB_RUN_LIVE_TESTS=1` and project confirmation. Do not load production
|
|
58
|
-
credentials into package/CI tests.
|
|
75
|
+
credentials into package/CI tests. Authorized development-project live tests have
|
|
76
|
+
passed; the [validation record](https://github.com/lambdadb/lambdadb-mcp/blob/develop/docs/validation/2026-09-20-npm.md) identifies the
|
|
77
|
+
tested source and installed package. These results do not automatically validate
|
|
78
|
+
a future release candidate.
|
|
59
79
|
|
|
60
80
|
## First package publication: separate manual bootstrap
|
|
61
81
|
|
|
@@ -112,8 +132,9 @@ It has no npm token secret. See [npm Trusted Publishing](https://docs.npmjs.com/
|
|
|
112
132
|
Leave repository variable `NPM_DEV_PUBLISH_ENABLED` unset or false through
|
|
113
133
|
bootstrap and trust setup. Only after authorizing ongoing develop publication,
|
|
114
134
|
set it to `true` in GitHub **Settings → Secrets and variables → Actions → Variables**.
|
|
115
|
-
This
|
|
116
|
-
|
|
135
|
+
This repository completed that activation; the variable was verified as `true` on
|
|
136
|
+
2026-09-20 (KST). The next eligible develop push, or a rerun of its existing push
|
|
137
|
+
workflow, can publish. `workflow_dispatch`, PRs and main
|
|
117
138
|
pushes validate only. Disable the variable to stop future automatic publication;
|
|
118
139
|
do not cancel an in-progress registry write as rollback.
|
|
119
140
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functional-systems/lambdadb-mcp",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
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": "29be7b9cca26c6e619e9f9ad689cca3663c09d46"
|
|
64
64
|
}
|