@leadbay/mcp 0.23.12 → 0.23.13

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,11 @@
1
1
  # Changelog — @leadbay/mcp
2
2
 
3
+ ## 0.23.13 — 2026-07-03
4
+
5
+ Directory-submission schema fix.
6
+
7
+ - **`leadbay_import_and_qualify` `dry_run` param** now declares a JSON-Schema type (`["boolean","string"]` + `enum [true,false,"preview"]`). It previously carried only a description, so connector-directory validators (ChatGPT Apps SDK / Anthropic) rejected it with "Parameters missing type: dry_run". No behavior change — those were already the only accepted values. Introspection confirmed `dry_run` was the only untyped input property across all tools.
8
+
3
9
  ## 0.23.12 — 2026-07-03
4
10
 
5
11
  Claude Code install no longer fails with `unknown option '--scope'` / `--env` (product#3847).
package/dist/bin.js CHANGED
@@ -18537,6 +18537,11 @@ var init_import_and_qualify = __esm({
18537
18537
  description: "Lens id (escape hatch \u2014 defaults to active)."
18538
18538
  },
18539
18539
  dry_run: {
18540
+ // Union type (boolean | "preview"): declare both JSON-Schema types so
18541
+ // directory validators don't flag a missing `type`. The enum pins the
18542
+ // only accepted string value.
18543
+ type: ["boolean", "string"],
18544
+ enum: [true, false, "preview"],
18540
18545
  description: "Optional. `true` runs preprocess only (no commit, no qualify). `'preview'` runs preprocess and returns the wizard's per-column AI mapping hints + sample rows + custom-field candidates from the org catalog so the agent can choose a mapping. Default: false (full flow)."
18541
18546
  },
18542
18547
  skip_already_qualified: {
@@ -27807,7 +27812,7 @@ var OAUTH_BASE_URLS = {
27807
27812
  fr: "https://staging.api.leadbay.app"
27808
27813
  }
27809
27814
  };
27810
- var VERSION = "0.23.12";
27815
+ var VERSION = "0.23.13";
27811
27816
  var HELP = `
27812
27817
  leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
27813
27818
 
@@ -18924,6 +18924,11 @@ var importAndQualify = {
18924
18924
  description: "Lens id (escape hatch \u2014 defaults to active)."
18925
18925
  },
18926
18926
  dry_run: {
18927
+ // Union type (boolean | "preview"): declare both JSON-Schema types so
18928
+ // directory validators don't flag a missing `type`. The enum pins the
18929
+ // only accepted string value.
18930
+ type: ["boolean", "string"],
18931
+ enum: [true, false, "preview"],
18927
18932
  description: "Optional. `true` runs preprocess only (no commit, no qualify). `'preview'` runs preprocess and returns the wizard's per-column AI mapping hints + sample rows + custom-field candidates from the org catalog so the agent can choose a mapping. Default: false (full flow)."
18928
18933
  },
18929
18934
  skip_already_qualified: {
@@ -24062,7 +24067,7 @@ function parseWriteEnv(env = process.env) {
24062
24067
  }
24063
24068
 
24064
24069
  // src/http-server.ts
24065
- var VERSION = true ? "0.23.12" : "0.0.0-dev";
24070
+ var VERSION = true ? "0.23.13" : "0.0.0-dev";
24066
24071
  var PORT = Number(process.env.PORT ?? 8080);
24067
24072
  var HOST = process.env.HOST ?? "0.0.0.0";
24068
24073
  var sseSessions = /* @__PURE__ */ new Map();
@@ -1804,7 +1804,7 @@ var init_installer_gui = __esm({
1804
1804
  init_install_dxt();
1805
1805
  init_install_shared();
1806
1806
  init_oauth();
1807
- VERSION = true ? "0.23.12" : "0.0.0-dev";
1807
+ VERSION = true ? "0.23.13" : "0.0.0-dev";
1808
1808
  MESSAGES = {
1809
1809
  en: {
1810
1810
  installer: {
@@ -1067,7 +1067,7 @@ async function oauthLogin(opts) {
1067
1067
  }
1068
1068
 
1069
1069
  // installer/installer-gui.ts
1070
- var VERSION = true ? "0.23.12" : "0.0.0-dev";
1070
+ var VERSION = true ? "0.23.13" : "0.0.0-dev";
1071
1071
  var MESSAGES = {
1072
1072
  en: {
1073
1073
  installer: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leadbay/mcp",
3
- "version": "0.23.12",
3
+ "version": "0.23.13",
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",