@elitedcs/ghl-mcp 3.45.0 → 3.46.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 CHANGED
@@ -1,5 +1,37 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.46.0 — `verify_funnel`: prove a funnel actually captures leads (+ external-funnel wiring bundle)
4
+
5
+ The live-runtime companion to `audit_workflows`. `audit_workflows` finds dead workflow
6
+ steps (static); **`verify_funnel`** proves a public funnel actually **captures** a lead AND
7
+ the machine **acts** on it — because the UI is never proof. (Motivated by two real failures
8
+ from the field: a funnel whose thank-you page showed while every lead silently evaporated,
9
+ and a handler that wrote guessed field keys so values were dropped on save.)
10
+
11
+ - **New tool `verify_funnel`.** Submits a clearly-marked sentinel lead to the live funnel
12
+ URL, then reads GHL back to verify what REALLY happened:
13
+ - **Backend truth** — the contact is actually created (`search_contacts`), with submit→appear latency.
14
+ - **Field-value fidelity** — each expected field PERSISTED with the exact submitted value
15
+ (a wrong field id makes upsert succeed while silently dropping the value).
16
+ - **Trigger tag landed**, else the speed-to-lead workflow can't fire.
17
+ - **SMS/A2P pre-check** — flags an account with no SMS-capable number (any SMS step would silently fail).
18
+ - **Workflow status** — flags a DRAFT workflow (never fires on real leads).
19
+ - **Outreach fired** — an outbound message was actually logged (proves enrollment + send, not a green log).
20
+ - **Consent recorded** when messaging fires (TCPA/CAN-SPAM).
21
+ - **Duplicate-contact dedup** + **concurrent double-submit race** (lag-stable polling, no false-pass).
22
+ - **Routing/opportunity/attribution** (optional) and **multi-surface** (extra URLs).
23
+ - Booking can't be faked server-side → surfaced as a manual "book one real appointment" step.
24
+ - Safety: creates a real (clearly-marked `blueprint-qa`) contact and may fire real automation;
25
+ cleans the sentinel(s) up afterward by default (cleanup runs even on error), with a verdict
26
+ that turns any failed assertion into an overall FAIL (no silent skips).
27
+ - **`apply_build_plan` execute now returns an `externalWiring` bundle.** For each
28
+ `target:"external"` funnel: the location id, the **verified GHL custom-field ids** the
29
+ external form must send (never name-guessed keys), the booking URL, and the contact-tag
30
+ trigger to add — with an `unresolved` list for anything not yet built. This is what you
31
+ template into the self-hosted lead bridge (`templates/external-funnel/`).
32
+ - External-funnel README hardened: the contactless-inbound-webhook rationale (why the bridge
33
+ uses `/contacts/upsert`, not a raw trigger) + a "verify after deploy" QA checklist.
34
+
3
35
  ## 3.35.0 — `create_social_post` is now draft-first (closes the silent "everything published at once" trap)
4
36
 
5
37
  **Behavior change.** `create_social_post` no longer defers go-live to GoHighLevel's
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # GHL Command — GoHighLevel MCP Server
2
2
 
3
- **Full GoHighLevel API access for Claude.** 219 tools across 43 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.** 220 tools across 43 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
 
@@ -116,7 +116,7 @@ Run setup_ghl_mcp to activate GHL Command:
116
116
  ghl_location_id: YOUR_LOCATION_ID
117
117
  ```
118
118
 
119
- 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 (219 tools total with the optional Workflow Builder Firebase add-on).
119
+ 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 (220 tools total with the optional Workflow Builder Firebase add-on).
120
120
 
121
121
  ### 4. Try it
122
122
 
@@ -734,7 +734,7 @@ Source repo is private. Contributors need an invitation from `drjerryrelth`. The
734
734
 
735
735
  ### Reducing context / token usage
736
736
 
737
- Every registered MCP tool's schema is shipped to the model on every message. With 219 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`:
737
+ Every registered MCP tool's schema is shipped to the model on every message. With 220 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`:
738
738
 
739
739
  ```jsonc
740
740
  // Claude Desktop config — enable whole modules