@elitedcs/ghl-mcp 3.80.0 → 3.81.0
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 +38 -0
- package/README.md +2 -2
- package/dist/capture-helper.js +11 -1
- package/dist/index.js +2737 -1304
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.81.0 — one cockpit, and a launcher that makes itself, for Command OS subscribers
|
|
4
|
+
|
|
5
|
+
The Command OS cockpit had grown into four screens that read as four products: the
|
|
6
|
+
board in one dark theme and font, Your agency in another, Brands in light cream, and
|
|
7
|
+
the assessment in a third dark theme with no way back except the browser's Back button.
|
|
8
|
+
This release gives all four one shell: the same colours, type and top bar, and every
|
|
9
|
+
screen can reach the hub, the board and each other.
|
|
10
|
+
|
|
11
|
+
Text got bigger. Measured in a browser at a 20px base setting, the share of characters
|
|
12
|
+
smaller than 18px went from 77% to 15% on the board, 74% to 6% on the assessment and
|
|
13
|
+
45% to 5% on Brands. What is still small is a chip, a badge or a legend, never a sentence.
|
|
14
|
+
|
|
15
|
+
**Your Anthropic key has a home.** Command OS runs the stages and Design Studio on your
|
|
16
|
+
own Claude account, and until now the key had three places to live, none of which the
|
|
17
|
+
cockpit told you about. It is now a field on the Your agency screen. Before it is kept,
|
|
18
|
+
Anthropic is asked whether it works, because a key can be present and still refuse
|
|
19
|
+
every request. It is stored beside your licence, handed to the runs the cockpit starts,
|
|
20
|
+
and never shown back beyond its last four characters. Removing it hands back whatever
|
|
21
|
+
your computer already set, instead of throwing that away too.
|
|
22
|
+
|
|
23
|
+
**The desktop launcher makes itself.** On a Command OS licence the double-click
|
|
24
|
+
launcher is created the first time the cockpit starts, and when you run the install
|
|
25
|
+
command, once. Nothing asks you to paste a second line. If you delete the icon it stays
|
|
26
|
+
deleted. A launcher that was only half written no longer counts as installed, so one
|
|
27
|
+
failed write cannot block every later repair.
|
|
28
|
+
|
|
29
|
+
**The $97 product is unchanged at 250 tools, 51 modules, 112 free.**
|
|
30
|
+
|
|
31
|
+
**Also in this release**
|
|
32
|
+
|
|
33
|
+
A readiness note in the AI employee demo no longer names a private account. The
|
|
34
|
+
`list_templates` description said clinic, med spa, dental and more while exactly one
|
|
35
|
+
template ships; it now says so.
|
|
36
|
+
|
|
37
|
+
On board but not yet offered: Design Studio's conversion mode, a rulebook for a page
|
|
38
|
+
that has to sell. The code is in this version and nothing in the cockpit or the hub
|
|
39
|
+
reaches it yet. It gets its own release after a run on a real brand.
|
|
40
|
+
|
|
3
41
|
## 3.80.0 — the phone side of the AI employee, for Command OS subscribers
|
|
4
42
|
|
|
5
43
|
GoHighLevel's Voice AI answers a client's calls. Until now the only way to set one up
|
package/README.md
CHANGED
|
@@ -513,7 +513,7 @@ Highlights (full guide: [`docs/HEADLESS.md`](docs/HEADLESS.md)):
|
|
|
513
513
|
|
|
514
514
|
| Tool | What It Does |
|
|
515
515
|
|---|---|
|
|
516
|
-
| `list_templates` | List
|
|
516
|
+
| `list_templates` | List the setup templates that ship with this install (currently one: Clinic / Med Spa) |
|
|
517
517
|
| `get_template_questionnaire` | Get the questionnaire for a template — present to user conversationally |
|
|
518
518
|
| `deploy_template` | Deploy a complete sub-account setup from a template (tags, fields, pipelines, workflows, forms). Supports dry-run mode. |
|
|
519
519
|
|
|
@@ -897,7 +897,7 @@ Built by **[Elite DCs, LLC](https://elitedcs.com)** — a digital marketing and
|
|
|
897
897
|
|
|
898
898
|
**Tech stack:** TypeScript, Node.js, esbuild, MCP SDK, Zod, GHL API v2, Firebase Auth
|
|
899
899
|
|
|
900
|
-
**Version:** 3.
|
|
900
|
+
**Version:** 3.81.0
|
|
901
901
|
|
|
902
902
|
---
|
|
903
903
|
|
package/dist/capture-helper.js
CHANGED
|
@@ -61,7 +61,17 @@ var CredentialsSchema = import_zod.z.object({
|
|
|
61
61
|
* Written once on the first cockpit run, replaced by
|
|
62
62
|
* `ghl-mcp dashboard --rotate-token`. Optional in the schema so files written
|
|
63
63
|
* by earlier versions still parse. NEVER printed, logged or displayed. */
|
|
64
|
-
cockpit_seat_token: import_zod.z.string().optional()
|
|
64
|
+
cockpit_seat_token: import_zod.z.string().optional(),
|
|
65
|
+
/** The operator's OWN Anthropic key (2026-09-05, hub audit). Command OS runs
|
|
66
|
+
* the build stages and Design Studio on the member's Claude account — ours is
|
|
67
|
+
* not on offer — and until now that key had no home in setup at all: it had to
|
|
68
|
+
* be typed into the Claude Desktop settings file, passed to `claude mcp add -e`,
|
|
69
|
+
* or exported in the shell before `dashboard`, and a member who did none of
|
|
70
|
+
* those met a stage that simply failed. Saved here from the cockpit's Your
|
|
71
|
+
* agency screen and folded into the environment the run inherits.
|
|
72
|
+
* NEVER printed, logged or sent back to the page — the screen shows only the
|
|
73
|
+
* last four characters of what is saved. */
|
|
74
|
+
anthropic_api_key: import_zod.z.string().optional()
|
|
65
75
|
});
|
|
66
76
|
function appDataDir() {
|
|
67
77
|
const override = process.env.GHL_MCP_CONFIG_DIR?.trim();
|