@leadbay/mcp 0.24.0 → 0.24.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/CHANGELOG.md +12 -0
- package/README.md +19 -53
- package/dist/bin.js +177 -98
- package/dist/http-server.js +569 -104
- package/dist/installer-electron.js +2 -2
- package/dist/installer-gui.js +2 -2
- package/package.json +1 -1
|
@@ -185,7 +185,7 @@ var HOSTED_MCP_URL;
|
|
|
185
185
|
var init_install_shared = __esm({
|
|
186
186
|
"installer/install-shared.ts"() {
|
|
187
187
|
"use strict";
|
|
188
|
-
HOSTED_MCP_URL = "https://
|
|
188
|
+
HOSTED_MCP_URL = "https://mcp.leadbay.app/mcp";
|
|
189
189
|
}
|
|
190
190
|
});
|
|
191
191
|
|
|
@@ -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.24.
|
|
1807
|
+
VERSION = true ? "0.24.1" : "0.0.0-dev";
|
|
1808
1808
|
MESSAGES = {
|
|
1809
1809
|
en: {
|
|
1810
1810
|
installer: {
|
package/dist/installer-gui.js
CHANGED
|
@@ -381,7 +381,7 @@ import { spawn as spawn2 } from "child_process";
|
|
|
381
381
|
import { existsSync, readFileSync, readdirSync } from "fs";
|
|
382
382
|
import { join } from "path";
|
|
383
383
|
import { homedir } from "os";
|
|
384
|
-
var HOSTED_MCP_URL = "https://
|
|
384
|
+
var HOSTED_MCP_URL = "https://mcp.leadbay.app/mcp";
|
|
385
385
|
function formatInstallOsLabel(platform = process.platform, arch = process.arch) {
|
|
386
386
|
const name = platform === "darwin" ? "macOS" : platform === "win32" ? "Windows" : platform === "linux" ? "Linux" : platform;
|
|
387
387
|
return `${name} (${arch})`;
|
|
@@ -1067,7 +1067,7 @@ async function oauthLogin(opts) {
|
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
1069
|
// installer/installer-gui.ts
|
|
1070
|
-
var VERSION = true ? "0.24.
|
|
1070
|
+
var VERSION = true ? "0.24.1" : "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.24.
|
|
3
|
+
"version": "0.24.1",
|
|
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",
|