@elitedcs/ghl-mcp 3.34.0 → 3.34.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 +8 -0
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.34.1 — CLI list-locations shows companyId
|
|
4
|
+
|
|
5
|
+
`ghl-mcp cli list-locations` now includes each location's `companyId` (same as
|
|
6
|
+
the `list_registered_locations` tool) — the quick way to tell whether your
|
|
7
|
+
locations live under one agency company or several. Different companyIds =
|
|
8
|
+
separate agency accounts, each needing its own `firebaseByCompany` entry for
|
|
9
|
+
the workflow builder.
|
|
10
|
+
|
|
3
11
|
## 3.34.0 — Headless/server deployment hardening
|
|
4
12
|
|
|
5
13
|
Built for production server installs (Linux droplets, containers, MCP
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ var require_package = __commonJS({
|
|
|
31
31
|
"package.json"(exports2, module2) {
|
|
32
32
|
module2.exports = {
|
|
33
33
|
name: "@elitedcs/ghl-mcp",
|
|
34
|
-
version: "3.34.
|
|
34
|
+
version: "3.34.1",
|
|
35
35
|
mcpName: "io.github.drjerryrelth/ghl-command",
|
|
36
36
|
description: "GoHighLevel MCP Server for Claude. 218 tools \u2014 full CRM, automation, marketing control, account-wide workflow audit, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
37
37
|
main: "dist/index.js",
|
|
@@ -9752,7 +9752,10 @@ async function cmdRegisterAgencyKey(argv, registry2) {
|
|
|
9752
9752
|
return EXIT_OK;
|
|
9753
9753
|
}
|
|
9754
9754
|
function cmdListLocations(registry2) {
|
|
9755
|
-
const locs = registry2.listLocations()
|
|
9755
|
+
const locs = registry2.listLocations().map((loc) => {
|
|
9756
|
+
const companyId = registry2.getToken(loc.locationId)?.companyId;
|
|
9757
|
+
return { ...loc, ...companyId ? { companyId } : {} };
|
|
9758
|
+
});
|
|
9756
9759
|
const companies = registry2.listCompanyFirebases();
|
|
9757
9760
|
const out = {
|
|
9758
9761
|
registryPath: tokenRegistryPath(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elitedcs/ghl-mcp",
|
|
3
|
-
"version": "3.34.
|
|
3
|
+
"version": "3.34.1",
|
|
4
4
|
"mcpName": "io.github.drjerryrelth/ghl-command",
|
|
5
5
|
"description": "GoHighLevel MCP Server for Claude. 218 tools — full CRM, automation, marketing control, account-wide workflow audit, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
6
6
|
"main": "dist/index.js",
|