@elitedcs/ghl-mcp 3.53.2 → 3.55.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +62 -32
  2. package/README.md +9 -7
  3. package/dist/index.js +1922 -684
  4. package/package.json +4 -3
  5. package/skills/blueprint/README.md +27 -0
  6. package/skills/blueprint/SKILL.md +149 -0
  7. package/skills/blueprint/examples/medspa-approval-view.md +92 -0
  8. package/skills/blueprint/examples/medspa-brief.json +52 -0
  9. package/skills/blueprint/examples/medspa-build-plan.json +265 -0
  10. package/skills/blueprint/examples/medspa-dry-run-report.md +67 -0
  11. package/skills/blueprint/examples/sample-approval-view.md +82 -0
  12. package/skills/blueprint/examples/sample-brief.json +13 -0
  13. package/skills/blueprint/examples/sample-build-plan.json +227 -0
  14. package/skills/blueprint/examples/validate-plan.cjs +127 -0
  15. package/skills/blueprint/presets/clinic-launch-a2p.md +39 -0
  16. package/skills/blueprint/presets/clinic-launch-a2p.preset.json +337 -0
  17. package/skills/blueprint/presets/generic-client.md +36 -0
  18. package/skills/blueprint/presets/generic-client.preset.json +255 -0
  19. package/skills/blueprint/presets/med-spa.md +59 -0
  20. package/skills/blueprint/presets/med-spa.preset.json +264 -0
  21. package/skills/blueprint/references/agency-os-detection.md +80 -0
  22. package/skills/blueprint/references/approval-view.md +83 -0
  23. package/skills/blueprint/references/brief-schema.md +45 -0
  24. package/skills/blueprint/references/build-plan-schema.md +52 -0
  25. package/skills/blueprint/references/external-funnel.md +310 -0
  26. package/skills/blueprint/references/intake-question-set.md +141 -0
  27. package/skills/blueprint/references/preset-format.md +130 -0
package/CHANGELOG.md CHANGED
@@ -1,37 +1,67 @@
1
1
  # Changelog
2
2
 
3
- ## 3.53.2Fixes a serious 3.53.1 regression: upgrade immediately
4
-
5
- 3.53.1 resolved the machine identity randomly when nothing was passed in, and
6
- that is exactly how attestation verification asks for it. Cached attestations
7
- failed to verify, the tool dropped to bootstrap, and each restart would have
8
- claimed another install slot until the member hit their cap.
9
-
10
- - No-argument identity resolution is deterministic again: stored `device_id`
11
- first, then the fingerprint inside an existing attestation (so an upgrade
12
- keeps the slot it already holds), then the legacy scheme as a last resort.
13
- - Two tests pin the determinism so this cannot ship again.
14
-
15
- If you ran 3.53.1, upgrade. If your install count looks inflated, write to
16
- support@ghlcommand.com and we will reset it.
17
-
18
- ## 3.53.1 Laptops stop eating install slots; "cancelled" stops lying
19
-
20
- Reported by Carlos Boyd, who hit his install cap with two physical machines.
21
-
22
- - **Device identity is stable now.** The fingerprint was derived from the
23
- machine hostname, and a Mac's `.local` hostname changes with the network
24
- (new Wi-Fi, DHCP, a name collision) so the same laptop could present a new
25
- identity and claim another install slot. Identity is now a random id
26
- persisted in the config dir, so it survives reinstalls and renames. On
27
- upgrade it ADOPTS the fingerprint from the existing cached attestation, so no
28
- current install loses the slot it already holds. `legacyDeviceFingerprint()`
29
- is kept for reference.
30
- - **Install-limit is no longer reported as "cancelled".** Both conditions come
31
- back from the gate as 403, and the client labelled both `cancelled`, so a
32
- full machine list read as a billing failure — two contradictory lines in the
33
- same block. `install_limit` is its own reason, and the gate prints the
34
- server's own sentence instead of a reason code beside it.
3
+ ## 3.55.0Skills ship inside the package: Blueprint installs itself
4
+
5
+ The gap between "the tools exist" and "the guided experience exists" is
6
+ closed. The npm package now bundles guided skills and installs them into
7
+ your `~/.claude/skills/` automatically on every start — nothing to download,
8
+ no separate zip.
9
+
10
+ - **Blueprint is now actually delivered**: the full guided skill (intake →
11
+ brief build plan approval staged build) that orchestrates the six
12
+ Blueprint tools ships in the package. Previously the README sold it but
13
+ only the raw tools shipped.
14
+ - Installer is idempotent and never clobbers your edits: files you've
15
+ modified are kept and reported, updates only touch files the installer
16
+ itself wrote (tracked by content hash in `.ghl-command-skills.json`).
17
+ - New `install_skills` tool (every tier — it only writes to your machine)
18
+ to verify what's installed or repair a deleted skill.
19
+ - Restart Claude fully after an update so new skills load.
20
+
21
+ ## 3.54.0 — Page Studio: `compose_page` + `compose_website` build designer-grade pages
22
+
23
+ The gap between "GHL Command creates funnels/websites" and "the pages look
24
+ professionally designed" is closed. A section library cloned field-for-field
25
+ from a professionally designed GHL template (topbar, nav, image hero, icon
26
+ value cards, feature blocks, CTA banners, FAQ, map, calendar booking, inline
27
+ form with A2P disclosures, compliant footer) composes complete pages that
28
+ GHL's renderer verifiably renders.
29
+
30
+ - `compose_page`: a complete opt-in funnel page in one call hero, quotable
31
+ value cards, inline form (embeds your real form), FAQ, footer with legal
32
+ name/address/privacy/terms. Refuses to build an opt-in page without the
33
+ A2P-required business facts.
34
+ - `compose_website`: a complete multi-page website in one call (home, about,
35
+ services, booking, contact) — nav wired to the real pages, booking page
36
+ embeds a real calendar, every page carries the compliant footer.
37
+ - Brand-themeable: pass brand colors + Google fonts; copy can use
38
+ `{{location.*}}` merge fields and localizes per account automatically.
39
+ - Safe by contract: `dry_run` writes nothing; `create` refuses any page that
40
+ already has content, any page it cannot read, and any page belonging to a
41
+ different funnel — existing pages can never be damaged. All saves are drafts
42
+ and verified after writing. (There is deliberately no overwrite mode: GHL
43
+ only honors the first save onto a page; to redo a page, delete its step and
44
+ compose onto a fresh one.)
45
+ - Includes the 3.53.2 licensing fixes (stable device identity, honest
46
+ install-limit message, deterministic identity resolution).
47
+
48
+ ## 3.53.2 — Licensing: fix the 3.53.1 identity regression
49
+
50
+ 3.53.1's device fingerprint could return a random id in the no-argument path,
51
+ so cached attestations failed to verify and every restart could claim a fresh
52
+ install slot. 3.53.2 makes identity resolution deterministic. If you are on
53
+ 3.53.1, update. (No members were affected — verified against the license DB.)
54
+
55
+ ## 3.53.1 — Licensing: stable device identity + honest install-limit message
56
+
57
+ Superseded by 3.53.2 (see above) — do not install this version.
58
+
59
+ ## 3.53.0 — `create_funnel` can now create websites
60
+
61
+ Subscriber report: the tool description said "funnel/website" but the handler
62
+ hardcoded `type:"funnel"`. New optional `type` parameter (`funnel` | `website`,
63
+ default `funnel`). Live-verified: websites persist and appear under
64
+ Sites → Websites; omitting the parameter behaves exactly as before.
35
65
 
36
66
  ## 3.52.1 — Docs: positioning vs. HighLevel's official Anthropic MCP
37
67
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # GHL Command — GoHighLevel MCP Server
2
2
 
3
- **Full GoHighLevel API access for Claude.** 232 tools across 48 modules — manage contacts, conversations, pipelines, calendars, funnels, workflows, invoices, custom objects, webhooks, and more. **Includes full workflow builder, funnel/page editor, form builder, pipeline builder, bulk operations, account export, and workflow cloning** — capabilities no other GHL tool offers. **Multi-tenant:** one install can run the workflow builder across multiple clients' GHL accounts.
3
+ **Full GoHighLevel API access for Claude.** 235 tools across 49 modules — manage contacts, conversations, pipelines, calendars, funnels, workflows, invoices, custom objects, webhooks, and more. **Includes full workflow builder, funnel/page editor, form builder, pipeline builder, bulk operations, account export, and workflow cloning** — capabilities no other GHL tool offers. **Multi-tenant:** one install can run the workflow builder across multiple clients' GHL accounts.
4
4
 
5
5
  **Distributed via npm as [`@elitedcs/ghl-mcp`](https://www.npmjs.com/package/@elitedcs/ghl-mcp).** Buyers install with one config block — no git, no Node.js setup, no terminal commands. Updates flow automatically (`npx @latest` re-resolves on every Claude restart).
6
6
 
@@ -8,9 +8,11 @@ Works with **both the Claude Desktop App and Claude Code terminal** — your cho
8
8
 
9
9
  **License required.** Get it at [ghlcommand.com](https://ghlcommand.com?utm_source=npm&utm_medium=readme) — $97/mo, covering UNLIMITED GoHighLevel sub-accounts on up to 3 machines (never billed per account). **30-day time-back guarantee**: save 5+ hours on one client build or your first month back.
10
10
 
11
- **Try it FREE (read-only tier).** Grab an instant free key at [ghlcommand.com/free](https://ghlcommand.com/free?utm_source=npm&utm_medium=readme) — 106 read-only tools on your own GHL account (88 before the one-login auditor unlock): the account-wide workflow audit (`audit_workflows` finds the silently broken references GHL never warns you about), account health, and every read across contacts, pipelines, funnels, and workflows. Write tools stay visible and answer with upgrade info. Buying later with the same email upgrades your key in place — 1 machine on free, 3 when you upgrade.
11
+ **Try it FREE (read-only tier).** Grab an instant free key at [ghlcommand.com/free](https://ghlcommand.com/free?utm_source=npm&utm_medium=readme) — 107 read-only tools on your own GHL account (89 before the one-login auditor unlock): the account-wide workflow audit (`audit_workflows` finds the silently broken references GHL never warns you about), account health, and every read across contacts, pipelines, funnels, and workflows. Write tools stay visible and answer with upgrade info. Buying later with the same email upgrades your key in place — 1 machine on free, 3 when you upgrade.
12
12
 
13
- **How this differs from HighLevel's official MCP.** HighLevel ships an official Anthropic MCP that reads and writes your CRM (contacts, conversations, calendars, opportunities, payments, social) over the public API — it's free and it's good; use it for that. What it *cannot* do, because the public API doesn't expose it: **build or edit workflows, build funnels/landing pages, or build forms.** That's exactly what GHL Command does — the programmatic Workflow Builder, funnel/page builder, form builder, deep workflow cloning, the silent-failure `audit_workflows`, and Blueprint (build a whole client account from one sentence), all on GHL's internal APIs. **Official MCP = read/write your CRM. GHL Command = build and fix it.** They stack fine together.
13
+ **How this differs from HighLevel's official MCP.** HighLevel ships an official Anthropic MCP that reads and writes your CRM (contacts, conversations, calendars, opportunities, payments, social) over the public API — it's free and it's good; use it for that. What it *cannot* do, because the public API doesn't expose it: **build or edit workflows, build funnels/landing pages, or build forms.** That's exactly what GHL Command does — the programmatic Workflow Builder, funnel/page builder, form builder, deep workflow cloning, the silent-failure `audit_workflows`, and Blueprint (build a whole client account from one intake — ships as a guided skill that **installs itself automatically** with this package; nothing to download), all on GHL's internal APIs. **Official MCP = read/write your CRM. GHL Command = build and fix it.** They stack fine together.
14
+
15
+ **Bundled skills (install automatically).** The package ships guided skills that teach Claude complete multi-step workflows on top of the raw tools. On every start the server installs/updates them into your `~/.claude/skills/` (never overwriting files you've edited — your version wins and is reported). Current skills: **Blueprint** — turn one client intake into a complete reviewed GHL account build. Verify or repair any time by asking Claude to `run install_skills`, then fully restart Claude so new skills load.
14
16
 
15
17
  Built by [Elite DCs, LLC](https://elitedcs.com).
16
18
 
@@ -120,7 +122,7 @@ Run setup_ghl_mcp to activate GHL Command:
120
122
  ghl_location_id: YOUR_LOCATION_ID
121
123
  ```
122
124
 
123
- Approve the tool call. Server validates your license, verifies your GHL credentials, writes them to a per-user config file. **Quit Claude one more time and reopen** — the full core toolset is now unlocked (232 tools total with the optional Workflow Builder Firebase add-on).
125
+ Approve the tool call. Server validates your license, verifies your GHL credentials, writes them to a per-user config file. **Quit Claude one more time and reopen** — the full core toolset is now unlocked (235 tools total with the optional Workflow Builder Firebase add-on).
124
126
 
125
127
  ### 4. Try it
126
128
 
@@ -160,7 +162,7 @@ https://app.gohighlevel.com/v2/location/YOUR_LOCATION_ID/dashboard
160
162
 
161
163
  ## Enable the Workflow Builder
162
164
 
163
- The builder + cloner + validator tools (workflow builder, funnel builder, form builder, pipeline builder, workflow cloner, validate_workflow) use GHL's internal API and require Firebase credentials. Without them, the other 180 tools work fine — you just won't have workflow/funnel/form/pipeline editing. This is the flagship feature: do this step.
165
+ The builder + cloner + validator tools (workflow builder, funnel builder, form builder, pipeline builder, workflow cloner, validate_workflow) use GHL's internal API and require Firebase credentials. Without them, the other 181 tools work fine — you just won't have workflow/funnel/form/pipeline editing. This is the flagship feature: do this step.
164
166
 
165
167
  **One-click capture (v3.49.0+, the supported path):**
166
168
 
@@ -503,7 +505,7 @@ Highlights (full guide: [`docs/HEADLESS.md`](docs/HEADLESS.md)):
503
505
  |---|---|
504
506
  | `get_mcp_version` | Check installed version against the latest published to npm. Confirms an upgrade landed after restarting Claude. Available even before GHL credentials are configured. |
505
507
  | `health_check` | Run a full health check: npm registry + version status, GHL API key validity, default location reachability, Firebase auth status, token registry presence. Use when something feels broken. |
506
- | `enable_workflow_builder` | Add Firebase credentials to an existing install to unlock 52 additional Firebase-gated tools (workflow builder, funnel builder, form builder, pipeline builder, workflow cloner, smart lists, reputation, email campaigns, email templates, memberships, validate_workflow). No need to re-enter license / API key / location ID. Run this any time after the basic setup, on the buyer's schedule. |
508
+ | `enable_workflow_builder` | Add Firebase credentials to an existing install to unlock 54 additional Firebase-gated tools (workflow builder, funnel builder, form builder, pipeline builder, workflow cloner, smart lists, reputation, email campaigns, email templates, memberships, validate_workflow). No need to re-enter license / API key / location ID. Run this any time after the basic setup, on the buyer's schedule. |
507
509
 
508
510
  ### Other Modules
509
511
 
@@ -749,7 +751,7 @@ Source repo is private. Contributors need an invitation from `drjerryrelth`. The
749
751
 
750
752
  ### Reducing context / token usage
751
753
 
752
- Every registered MCP tool's schema is shipped to the model on every message. With 232 tools that's a meaningful per-message context cost even in chats that never touch GHL. If you only use a slice of GHL Command, restrict the tool surface with `GHL_ENABLED_MODULES` and/or `GHL_ENABLED_TOOLS`:
754
+ Every registered MCP tool's schema is shipped to the model on every message. With 235 tools that's a meaningful per-message context cost even in chats that never touch GHL. If you only use a slice of GHL Command, restrict the tool surface with `GHL_ENABLED_MODULES` and/or `GHL_ENABLED_TOOLS`:
753
755
 
754
756
  ```jsonc
755
757
  // Claude Desktop config — enable whole modules