@leadbay/mcp 0.18.1 → 0.18.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog — @leadbay/mcp
2
2
 
3
+ ## 0.18.2 — 2026-06-09
4
+
5
+ - **Release-pipeline fix**: align `packages/mcp/server.json` with `package.json`. `server.json` had been stuck at `0.17.2` since the 0.17.2 release, so the MCP-Registry publish step (`Verify server.json version matches package.json`) failed on every release from 0.17.3 through 0.18.1 — npm and the GitHub `.mcpb` shipped, but the registry listing silently went stale. Both `server.json` version fields (top-level + `packages[0].version`) now track `package.json`, and a new audit test (`test/audit/server-json-version.test.ts`) fails the build on any future drift instead of letting it surface only at release time.
6
+
3
7
  ## 0.18.1 — 2026-06-09
4
8
 
5
9
  - **Quota rendering fix**: `leadbay_account_status` now renders the per-resource Daily / Weekly / Monthly **usage** table the API actually returns, instead of collapsing to "quota: null / no limits". Root cause: `quota_status` returns `count` (amount **used**) per resource per window with no cap field and a possibly-`null` `plan`; the old render hint tried to draw `used / cap` and gave up when there was no cap. The hint is now usage-only and explicitly warns that a missing cap / `null` plan is **not** "unlimited" or "no quota". `get-quota.ts` `outputSchema` corrected to the real `org` / `user.resources[]` shape (`{resource_type, count, window_type, resets_at}`, `count` = used), and a failed quota fetch is now distinguished from an empty quota.
package/dist/bin.js CHANGED
@@ -24638,7 +24638,7 @@ var OAUTH_BASE_URLS = {
24638
24638
  fr: "https://staging.api.leadbay.app"
24639
24639
  }
24640
24640
  };
24641
- var VERSION = "0.18.1";
24641
+ var VERSION = "0.18.2";
24642
24642
  var HELP = `
24643
24643
  leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
24644
24644
 
@@ -21254,7 +21254,7 @@ function parseWriteEnv(env = process.env) {
21254
21254
  }
21255
21255
 
21256
21256
  // src/http-server.ts
21257
- var VERSION = true ? "0.18.1" : "0.0.0-dev";
21257
+ var VERSION = true ? "0.18.2" : "0.0.0-dev";
21258
21258
  var PORT = Number(process.env.PORT ?? 8080);
21259
21259
  var HOST = process.env.HOST ?? "0.0.0.0";
21260
21260
  var sseSessions = /* @__PURE__ */ new Map();
@@ -1466,7 +1466,7 @@ var init_installer_gui = __esm({
1466
1466
  init_install_dxt();
1467
1467
  init_install_shared();
1468
1468
  init_oauth();
1469
- VERSION = "0.18.1";
1469
+ VERSION = "0.18.2";
1470
1470
  PORT = Number(process.env.LEADBAY_INSTALLER_PORT ?? 0);
1471
1471
  sessions = /* @__PURE__ */ new Map();
1472
1472
  OAUTH_BASE_URLS = {
@@ -873,7 +873,7 @@ async function oauthLogin(opts) {
873
873
  }
874
874
 
875
875
  // installer/installer-gui.ts
876
- var VERSION = "0.18.1";
876
+ var VERSION = "0.18.2";
877
877
  var PORT = Number(process.env.LEADBAY_INSTALLER_PORT ?? 0);
878
878
  var sessions = /* @__PURE__ */ new Map();
879
879
  var OAUTH_BASE_URLS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leadbay/mcp",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "mcpName": "io.github.leadbay/leadbay-mcp",
5
5
  "description": "Model Context Protocol (MCP) server for Leadbay — AI lead discovery, qualification, and enrichment for Claude Desktop, Cursor, and Claude Code.",
6
6
  "type": "module",