@leadbay/mcp 0.23.2 → 0.23.3
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 -0
- package/dist/bin.js +1 -1
- package/dist/http-server.js +1 -1
- package/dist/installer-electron.js +1 -1
- package/dist/installer-gui.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog — @leadbay/mcp
|
|
2
2
|
|
|
3
|
+
## 0.23.3 — 2026-06-24
|
|
4
|
+
|
|
5
|
+
- **Release plumbing only** — no functional change. First release on the updated CI that also publishes fixed-name `leadbay-latest.dxt` / `.mcpb` assets, so the docs can link a stable `…/releases/latest/download/leadbay-latest.dxt` that always resolves to the current version.
|
|
6
|
+
|
|
3
7
|
## 0.23.2 — 2026-06-24
|
|
4
8
|
|
|
5
9
|
- **Installer GUI shows the version** (product#3799) — the installer and uninstaller GUI cards now display the MCP version (e.g. `v0.23.2`) as a small muted-grey footer. Sourced from the build-time `__LEADBAY_MCP_VERSION__` define, so it tracks `package.json` with no manual upkeep.
|
package/dist/bin.js
CHANGED
|
@@ -27436,7 +27436,7 @@ var OAUTH_BASE_URLS = {
|
|
|
27436
27436
|
fr: "https://staging.api.leadbay.app"
|
|
27437
27437
|
}
|
|
27438
27438
|
};
|
|
27439
|
-
var VERSION = "0.23.
|
|
27439
|
+
var VERSION = "0.23.3";
|
|
27440
27440
|
var HELP = `
|
|
27441
27441
|
leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
|
|
27442
27442
|
|
package/dist/http-server.js
CHANGED
|
@@ -23750,7 +23750,7 @@ function parseWriteEnv(env = process.env) {
|
|
|
23750
23750
|
}
|
|
23751
23751
|
|
|
23752
23752
|
// src/http-server.ts
|
|
23753
|
-
var VERSION = true ? "0.23.
|
|
23753
|
+
var VERSION = true ? "0.23.3" : "0.0.0-dev";
|
|
23754
23754
|
var PORT = Number(process.env.PORT ?? 8080);
|
|
23755
23755
|
var HOST = process.env.HOST ?? "0.0.0.0";
|
|
23756
23756
|
var sseSessions = /* @__PURE__ */ new Map();
|
|
@@ -1718,7 +1718,7 @@ var init_installer_gui = __esm({
|
|
|
1718
1718
|
init_install_dxt();
|
|
1719
1719
|
init_install_shared();
|
|
1720
1720
|
init_oauth();
|
|
1721
|
-
VERSION = true ? "0.23.
|
|
1721
|
+
VERSION = true ? "0.23.3" : "0.0.0-dev";
|
|
1722
1722
|
PORT = Number(process.env.LEADBAY_INSTALLER_PORT ?? 0);
|
|
1723
1723
|
sessions = /* @__PURE__ */ new Map();
|
|
1724
1724
|
OAUTH_BASE_URLS = {
|
package/dist/installer-gui.js
CHANGED
|
@@ -1012,7 +1012,7 @@ async function oauthLogin(opts) {
|
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
1014
|
// installer/installer-gui.ts
|
|
1015
|
-
var VERSION = true ? "0.23.
|
|
1015
|
+
var VERSION = true ? "0.23.3" : "0.0.0-dev";
|
|
1016
1016
|
var PORT = Number(process.env.LEADBAY_INSTALLER_PORT ?? 0);
|
|
1017
1017
|
var sessions = /* @__PURE__ */ new Map();
|
|
1018
1018
|
var OAUTH_BASE_URLS = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leadbay/mcp",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.3",
|
|
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",
|