@elitedcs/ghl-mcp 3.73.0 → 3.73.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 +11 -0
- package/dist/index.js +12 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.73.1 — the cockpit points at the right hub
|
|
4
|
+
|
|
5
|
+
The member hub is Command OS only and now lives at its own address behind a licence
|
|
6
|
+
gate. The cockpit was still sending you to the build host it was published from, which
|
|
7
|
+
is not where a licensee should land. One link, corrected.
|
|
8
|
+
|
|
9
|
+
Both hub addresses are also added to the list of hosts the product refuses to place a
|
|
10
|
+
client's status page on. That list exists because a client's page on a host we run would
|
|
11
|
+
mean we are holding a customer's data, and the hub moving is exactly the kind of change
|
|
12
|
+
that quietly leaves such a list out of date.
|
|
13
|
+
|
|
3
14
|
## 3.73.0 — the assessment, for Command OS licensees
|
|
4
15
|
|
|
5
16
|
An agency's first paid conversation with a prospect, and the document that comes out of
|
package/dist/index.js
CHANGED
|
@@ -27394,7 +27394,7 @@ var require_package = __commonJS({
|
|
|
27394
27394
|
"package.json"(exports2, module2) {
|
|
27395
27395
|
module2.exports = {
|
|
27396
27396
|
name: "@elitedcs/ghl-mcp",
|
|
27397
|
-
version: "3.73.
|
|
27397
|
+
version: "3.73.1",
|
|
27398
27398
|
mcpName: "io.github.drjerryrelth/ghl-command",
|
|
27399
27399
|
description: "GoHighLevel MCP Server for Claude. 247 tools \u2014 full CRM, automation, marketing control, account-wide workflow audit, live funnel-capture verification, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
27400
27400
|
main: "dist/index.js",
|
|
@@ -28629,7 +28629,16 @@ var init_client_status_placement = __esm({
|
|
|
28629
28629
|
init_credentials_store();
|
|
28630
28630
|
init_client_status();
|
|
28631
28631
|
STATUS_SLUG = "status";
|
|
28632
|
-
OUR_HOSTS = [
|
|
28632
|
+
OUR_HOSTS = [
|
|
28633
|
+
"elitedcs.com",
|
|
28634
|
+
"ghlcommand.com",
|
|
28635
|
+
"commandos-hub.pages.dev",
|
|
28636
|
+
// The member hub's real address. It has to be in this list for the same
|
|
28637
|
+
// reason the others are: a client's status page here would mean we are
|
|
28638
|
+
// holding a customer's client data.
|
|
28639
|
+
"os.ghlcommand.com",
|
|
28640
|
+
"command-os.pages.dev"
|
|
28641
|
+
];
|
|
28633
28642
|
}
|
|
28634
28643
|
});
|
|
28635
28644
|
|
|
@@ -29413,7 +29422,7 @@ function renderCockpitHtml(roster, seatToken = "") {
|
|
|
29413
29422
|
return html(roster, seatToken);
|
|
29414
29423
|
}
|
|
29415
29424
|
function html(roster, seatToken) {
|
|
29416
|
-
const HUB_URL = "https://
|
|
29425
|
+
const HUB_URL = "https://os.ghlcommand.com/";
|
|
29417
29426
|
return `<!doctype html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Command OS \u2014 GHL Command</title>
|
|
29418
29427
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
29419
29428
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elitedcs/ghl-mcp",
|
|
3
|
-
"version": "3.73.
|
|
3
|
+
"version": "3.73.1",
|
|
4
4
|
"mcpName": "io.github.drjerryrelth/ghl-command",
|
|
5
5
|
"description": "GoHighLevel MCP Server for Claude. 247 tools \u2014 full CRM, automation, marketing control, account-wide workflow audit, live funnel-capture verification, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
6
6
|
"main": "dist/index.js",
|