@leadbay/mcp 0.23.1 → 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 +8 -0
- package/dist/bin.js +1 -1
- package/dist/http-server.js +1 -1
- package/dist/installer-electron.js +8 -1
- package/dist/installer-gui.js +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
## 0.23.2 — 2026-06-24
|
|
8
|
+
|
|
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.
|
|
10
|
+
|
|
3
11
|
## 0.23.1 — 2026-06-22
|
|
4
12
|
|
|
5
13
|
Retrieve + modify qualification questions and CRM custom fields over MCP (product#3768).
|
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();
|
|
@@ -1048,6 +1048,8 @@ var init_oauth = __esm({
|
|
|
1048
1048
|
var installer_gui_exports = {};
|
|
1049
1049
|
__export(installer_gui_exports, {
|
|
1050
1050
|
install: () => install,
|
|
1051
|
+
pageHtml: () => pageHtml,
|
|
1052
|
+
pageUninstallHtml: () => pageUninstallHtml,
|
|
1051
1053
|
sanitizeOutput: () => sanitizeOutput,
|
|
1052
1054
|
startInstallerGui: () => startInstallerGui,
|
|
1053
1055
|
startUninstallerGui: () => startUninstallerGui
|
|
@@ -1371,6 +1373,7 @@ function pageUninstallHtml() {
|
|
|
1371
1373
|
.result-note { font-size:12.5px; color:var(--muted); text-align:center; margin-top:-6px; }
|
|
1372
1374
|
@keyframes draw { to { stroke-dashoffset:0; } }
|
|
1373
1375
|
@keyframes pop { 0%{transform:scale(.5);opacity:0;} 60%{transform:scale(1.06);} 100%{transform:scale(1);opacity:1;} }
|
|
1376
|
+
.version { text-align:center; color:var(--muted); font-size:11px; margin:14px 0 0; letter-spacing:.02em; }
|
|
1374
1377
|
@media (max-width:520px) { .actions{flex-direction:column;} button{width:100%;} }
|
|
1375
1378
|
</style>
|
|
1376
1379
|
</head>
|
|
@@ -1402,6 +1405,7 @@ function pageUninstallHtml() {
|
|
|
1402
1405
|
<button class="danger" id="next">Remove selected</button>
|
|
1403
1406
|
</div>
|
|
1404
1407
|
</div>
|
|
1408
|
+
<p class="version">v${VERSION}</p>
|
|
1405
1409
|
</main>
|
|
1406
1410
|
<script>
|
|
1407
1411
|
const $ = (id) => document.getElementById(id);
|
|
@@ -1494,6 +1498,7 @@ function pageHtml() {
|
|
|
1494
1498
|
.result-note { font-size:12.5px; color:var(--muted); text-align:center; margin-top:-6px; }
|
|
1495
1499
|
@keyframes draw { to { stroke-dashoffset:0; } }
|
|
1496
1500
|
@keyframes pop { 0%{transform:scale(.5);opacity:0;} 60%{transform:scale(1.06);} 100%{transform:scale(1);opacity:1;} }
|
|
1501
|
+
.version { text-align:center; color:var(--muted); font-size:11px; margin:14px 0 0; letter-spacing:.02em; }
|
|
1497
1502
|
@media (max-width:520px) { .actions{flex-direction:column;} button{width:100%;} }
|
|
1498
1503
|
</style>
|
|
1499
1504
|
</head>
|
|
@@ -1525,6 +1530,7 @@ function pageHtml() {
|
|
|
1525
1530
|
<button class="primary" id="next">Sign in with Leadbay</button>
|
|
1526
1531
|
</div>
|
|
1527
1532
|
</div>
|
|
1533
|
+
<p class="version">v${VERSION}</p>
|
|
1528
1534
|
</main>
|
|
1529
1535
|
<script>
|
|
1530
1536
|
const $ = (id) => document.getElementById(id);
|
|
@@ -1702,7 +1708,7 @@ function startUninstallerGui(options = {}) {
|
|
|
1702
1708
|
return false;
|
|
1703
1709
|
}, "uninstaller");
|
|
1704
1710
|
}
|
|
1705
|
-
var PORT, sessions, OAUTH_BASE_URLS, LOCAL_BIN_PATH;
|
|
1711
|
+
var VERSION, PORT, sessions, OAUTH_BASE_URLS, LOCAL_BIN_PATH;
|
|
1706
1712
|
var init_installer_gui = __esm({
|
|
1707
1713
|
"installer/installer-gui.ts"() {
|
|
1708
1714
|
"use strict";
|
|
@@ -1712,6 +1718,7 @@ var init_installer_gui = __esm({
|
|
|
1712
1718
|
init_install_dxt();
|
|
1713
1719
|
init_install_shared();
|
|
1714
1720
|
init_oauth();
|
|
1721
|
+
VERSION = true ? "0.23.3" : "0.0.0-dev";
|
|
1715
1722
|
PORT = Number(process.env.LEADBAY_INSTALLER_PORT ?? 0);
|
|
1716
1723
|
sessions = /* @__PURE__ */ new Map();
|
|
1717
1724
|
OAUTH_BASE_URLS = {
|
package/dist/installer-gui.js
CHANGED
|
@@ -1012,6 +1012,7 @@ async function oauthLogin(opts) {
|
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
1014
|
// installer/installer-gui.ts
|
|
1015
|
+
var VERSION = true ? "0.23.3" : "0.0.0-dev";
|
|
1015
1016
|
var PORT = Number(process.env.LEADBAY_INSTALLER_PORT ?? 0);
|
|
1016
1017
|
var sessions = /* @__PURE__ */ new Map();
|
|
1017
1018
|
var OAUTH_BASE_URLS = {
|
|
@@ -1344,6 +1345,7 @@ function pageUninstallHtml() {
|
|
|
1344
1345
|
.result-note { font-size:12.5px; color:var(--muted); text-align:center; margin-top:-6px; }
|
|
1345
1346
|
@keyframes draw { to { stroke-dashoffset:0; } }
|
|
1346
1347
|
@keyframes pop { 0%{transform:scale(.5);opacity:0;} 60%{transform:scale(1.06);} 100%{transform:scale(1);opacity:1;} }
|
|
1348
|
+
.version { text-align:center; color:var(--muted); font-size:11px; margin:14px 0 0; letter-spacing:.02em; }
|
|
1347
1349
|
@media (max-width:520px) { .actions{flex-direction:column;} button{width:100%;} }
|
|
1348
1350
|
</style>
|
|
1349
1351
|
</head>
|
|
@@ -1375,6 +1377,7 @@ function pageUninstallHtml() {
|
|
|
1375
1377
|
<button class="danger" id="next">Remove selected</button>
|
|
1376
1378
|
</div>
|
|
1377
1379
|
</div>
|
|
1380
|
+
<p class="version">v${VERSION}</p>
|
|
1378
1381
|
</main>
|
|
1379
1382
|
<script>
|
|
1380
1383
|
const $ = (id) => document.getElementById(id);
|
|
@@ -1467,6 +1470,7 @@ function pageHtml() {
|
|
|
1467
1470
|
.result-note { font-size:12.5px; color:var(--muted); text-align:center; margin-top:-6px; }
|
|
1468
1471
|
@keyframes draw { to { stroke-dashoffset:0; } }
|
|
1469
1472
|
@keyframes pop { 0%{transform:scale(.5);opacity:0;} 60%{transform:scale(1.06);} 100%{transform:scale(1);opacity:1;} }
|
|
1473
|
+
.version { text-align:center; color:var(--muted); font-size:11px; margin:14px 0 0; letter-spacing:.02em; }
|
|
1470
1474
|
@media (max-width:520px) { .actions{flex-direction:column;} button{width:100%;} }
|
|
1471
1475
|
</style>
|
|
1472
1476
|
</head>
|
|
@@ -1498,6 +1502,7 @@ function pageHtml() {
|
|
|
1498
1502
|
<button class="primary" id="next">Sign in with Leadbay</button>
|
|
1499
1503
|
</div>
|
|
1500
1504
|
</div>
|
|
1505
|
+
<p class="version">v${VERSION}</p>
|
|
1501
1506
|
</main>
|
|
1502
1507
|
<script>
|
|
1503
1508
|
const $ = (id) => document.getElementById(id);
|
|
@@ -1677,6 +1682,8 @@ function startUninstallerGui(options = {}) {
|
|
|
1677
1682
|
}
|
|
1678
1683
|
export {
|
|
1679
1684
|
install,
|
|
1685
|
+
pageHtml,
|
|
1686
|
+
pageUninstallHtml,
|
|
1680
1687
|
sanitizeOutput,
|
|
1681
1688
|
startInstallerGui,
|
|
1682
1689
|
startUninstallerGui
|
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",
|