@yawlabs/lemonsqueezy-mcp 0.13.4 → 0.14.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 +17 -0
- package/LICENSE +21 -21
- package/README.md +410 -398
- package/bin/lemonsqueezy-mcp.mjs +665 -500
- package/dist/index.js +1 -1
- package/package.json +72 -72
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.5] — 2026-09-13
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **The launcher always uses the newest oam, and the minimum is now the latest release, 0.15.2.** It used to take the FIRST oam binary it found and only then check its version, so a stale copy in an earlier location hid a current one: with oam 0.9.0 in `~/.oam/bin` and 0.15.2 on `PATH`, it ran 0.9.0. Every oam binary it can see is now asked for its version, and the newest at or above 0.15.2 wins; a tie keeps search order, so the installed copy wins over `PATH`.
|
|
8
|
+
- **An oam host older than the floor no longer serves the server itself.** When a client ran `oam run bin/lemonsqueezy-mcp.mjs` with an old oam, the launcher spawned whatever discovery found, or, when that failed, served in-process on the old oam -- and below 0.9.0 oam passes `LEMONSQUEEZY_API_KEY_COMMAND`'s arguments through a shell. The spawn also inherited stdio, which an old oam does not honor, so the MCP handshake never answered (measured on a real oam 0.8.2 host, in aws-mcp's launcher). An old host now hands off with piped stdio to the newest usable oam, or to Node on `PATH`, or exits with an error when there is neither.
|
|
9
|
+
- **A missing `OAM_BIN` is now reported, and a bad one no longer stops discovery.** A path that does not exist used to fall back to Node without a word; it is now named on stderr, as an oam below the floor and a binary that will not run already were. In all three cases discovery now carries on instead of dropping straight to Node.
|
|
10
|
+
- **`LEMONSQUEEZY_MCP_RUNTIME=node` now always means Node.** Launched under `oam run`, it hands off to Node on `PATH` rather than staying on oam.
|
|
11
|
+
- **A failed oam spawn under `auto` now says so** on stderr before falling back, instead of falling back silently.
|
|
12
|
+
- Each `oam --version` probe is bounded at 5s, so a wedged binary on `PATH` cannot hang the launch.
|
|
13
|
+
|
|
14
|
+
`LEMONSQUEEZY_MCP_SANDBOX=1` keeps its rules: it still spawns a fresh oam, now the newest one, even on a supported oam host, and still serves without `--permission` under `auto` when no usable oam can be started (in-process on Node or on an oam host at the floor, handed off to Node from one below it). The sandbox flags are verified to be accepted by oam 0.15.2 with a real MCP handshake.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Docs only: the README documents `LEMONSQUEEZY_MCP_RUNTIME` and `OAM_BIN`, and no longer says Node is the packaged default -- the published command has preferred oam since 0.12.0 -- or quotes the 196ms / 424ms cold-start figures `CLAUDE.md` already withdrew.
|
|
19
|
+
|
|
3
20
|
## [0.13.4] — 2026-09-12
|
|
4
21
|
|
|
5
22
|
### Added
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Yaw Labs
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yaw Labs
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|