@elitedcs/ghl-mcp 3.80.0 → 3.81.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 CHANGED
@@ -1,5 +1,64 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.81.1 — the assessment opens from every published cockpit, and the product says its own name
4
+
5
+ **The assessment page was missing from every installed copy of the cockpit since 3.75.0.**
6
+ Click Assessment in the Command OS cockpit on a normal install and it answered "The
7
+ assessment page is not in this install. Update GHL Command and restart the cockpit." The
8
+ page had been left out of the package on purpose on the belief that nothing served it,
9
+ while the cockpit screen that serves it shipped the same day. Every check since ran from
10
+ a development copy, where a spare copy of the page hid the gap. The page now travels
11
+ inside the program itself, so there is no file to find and nothing to leave out, and the
12
+ fix was proven by installing the packed release and opening the assessment from it, which
13
+ is the check that had been missing for seven releases.
14
+
15
+ **What a member reads calls the product GHL Command.** The checkup's status table had
16
+ been labelling its first row "MCP version". That row now says "GHL Command version", and
17
+ the same correction runs through the health check, the version check, the current-account
18
+ readout, setup and the command line. The names you type to run those tools have not
19
+ changed.
20
+
21
+ **The $97 product is unchanged at 250 tools, 51 modules, 112 free.** The assessment is
22
+ behind the Command OS gate; the wording fix reaches everyone.
23
+
24
+ ## 3.81.0 — one cockpit, and a launcher that makes itself, for Command OS subscribers
25
+
26
+ The Command OS cockpit had grown into four screens that read as four products: the
27
+ board in one dark theme and font, Your agency in another, Brands in light cream, and
28
+ the assessment in a third dark theme with no way back except the browser's Back button.
29
+ This release gives all four one shell: the same colours, type and top bar, and every
30
+ screen can reach the hub, the board and each other.
31
+
32
+ Text got bigger. Measured in a browser at a 20px base setting, the share of characters
33
+ smaller than 18px went from 77% to 15% on the board, 74% to 6% on the assessment and
34
+ 45% to 5% on Brands. What is still small is a chip, a badge or a legend, never a sentence.
35
+
36
+ **Your Anthropic key has a home.** Command OS runs the stages and Design Studio on your
37
+ own Claude account, and until now the key had three places to live, none of which the
38
+ cockpit told you about. It is now a field on the Your agency screen. Before it is kept,
39
+ Anthropic is asked whether it works, because a key can be present and still refuse
40
+ every request. It is stored beside your licence, handed to the runs the cockpit starts,
41
+ and never shown back beyond its last four characters. Removing it hands back whatever
42
+ your computer already set, instead of throwing that away too.
43
+
44
+ **The desktop launcher makes itself.** On a Command OS licence the double-click
45
+ launcher is created the first time the cockpit starts, and when you run the install
46
+ command, once. Nothing asks you to paste a second line. If you delete the icon it stays
47
+ deleted. A launcher that was only half written no longer counts as installed, so one
48
+ failed write cannot block every later repair.
49
+
50
+ **The $97 product is unchanged at 250 tools, 51 modules, 112 free.**
51
+
52
+ **Also in this release**
53
+
54
+ A readiness note in the AI employee demo no longer names a private account. The
55
+ `list_templates` description said clinic, med spa, dental and more while exactly one
56
+ template ships; it now says so.
57
+
58
+ On board but not yet offered: Design Studio's conversion mode, a rulebook for a page
59
+ that has to sell. The code is in this version and nothing in the cockpit or the hub
60
+ reaches it yet. It gets its own release after a run on a real brand.
61
+
3
62
  ## 3.80.0 — the phone side of the AI employee, for Command OS subscribers
4
63
 
5
64
  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 available setup templates (clinic, med spa, dental, etc.) |
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.80.0
900
+ **Version:** 3.81.1
901
901
 
902
902
  ---
903
903
 
@@ -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();