@yawlabs/lemonsqueezy-mcp 0.4.0 → 0.4.1
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -200,7 +200,7 @@ For unattended/agentic use against a live store, we recommend:
|
|
|
200
200
|
What the server does **not** do and you must own at the caller level:
|
|
201
201
|
|
|
202
202
|
- **Idempotency / dedupe store** — MCP servers are stateless subprocesses; cross-invocation dedupe belongs in your agent or orchestrator.
|
|
203
|
-
- **Webhook reconciliation** — subscribe to LemonSqueezy webhooks in a separate long-running process to reconcile state when API writes succeed but the response is lost.
|
|
203
|
+
- **Webhook reconciliation** — subscribe to LemonSqueezy webhooks in a separate long-running process to reconcile state when API writes succeed but the response is lost. See [@yawlabs/lemonsqueezy-webhook-sink](https://github.com/YawLabs/lemonsqueezy-webhook-sink) for a ready-made sink.
|
|
204
204
|
- **Metrics / dashboards** — the server emits structured logs; derive metrics in your log pipeline.
|
|
205
205
|
|
|
206
206
|
See [SEMVER.md](./SEMVER.md) for the versioning policy.
|
package/dist/index.js
CHANGED
|
@@ -22898,7 +22898,7 @@ var webhookTools = [
|
|
|
22898
22898
|
];
|
|
22899
22899
|
|
|
22900
22900
|
// src/index.ts
|
|
22901
|
-
var version2 = true ? "0.4.
|
|
22901
|
+
var version2 = true ? "0.4.1" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
22902
22902
|
var subcommand = process.argv[2];
|
|
22903
22903
|
if (subcommand === "version" || subcommand === "--version") {
|
|
22904
22904
|
console.log(version2);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/lemonsqueezy-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "LemonSqueezy MCP server for managing your store from AI assistants",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "YawLabs <contact@yaw.sh>",
|
|
@@ -38,6 +38,9 @@
|
|
|
38
38
|
"prepublishOnly": "npm run build && node --test dist/**/*.test.js"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {},
|
|
41
|
+
"overrides": {
|
|
42
|
+
"hono": "^4.12.14"
|
|
43
|
+
},
|
|
41
44
|
"devDependencies": {
|
|
42
45
|
"@biomejs/biome": "^1.9.4",
|
|
43
46
|
"@modelcontextprotocol/sdk": "^1.29.0",
|