@elitedcs/ghl-mcp 3.48.0 → 3.48.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 +16 -0
- package/README.md +19 -17
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.48.1 — Docs patch: Firebase capture friction + live pricing copy
|
|
4
|
+
|
|
5
|
+
No behavior changes; text only.
|
|
6
|
+
|
|
7
|
+
- **Chrome "allow pasting" gotcha documented.** `auto_capture_firebase_script`'s steps now
|
|
8
|
+
tell buyers that when Chrome blocks the console paste, typing `allow pasting` in the
|
|
9
|
+
Console unblocks it. This was the single most common silent failure in the capture flow.
|
|
10
|
+
- **`request_license` copy corrected to the live offer.** Was "$97 one-time, no
|
|
11
|
+
subscription" pointing at the old elitedcs.com page; now "$97/mo, every sub-account you
|
|
12
|
+
manage" pointing at ghlcommand.com. The old copy misquoted the price to prospects
|
|
13
|
+
installing from npm.
|
|
14
|
+
- **README: one-paste capture is now the primary Workflow Builder path.** The manual
|
|
15
|
+
7-step IndexedDB walk is demoted to a collapsed fallback for locked-down browsers;
|
|
16
|
+
multi-tenant instructions reference the script instead of the manual steps.
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## 3.48.0 — Blueprint: complete workflow-building (opportunities, branching, appointment timers, opt-in publish)
|
|
4
20
|
|
|
5
21
|
Completes the `apply_build_plan` executor so a Blueprint build produces workflows that
|
package/README.md
CHANGED
|
@@ -154,11 +154,24 @@ Your Location ID (sub-account ID) is in the GHL URL when you'''re inside a sub-a
|
|
|
154
154
|
https://app.gohighlevel.com/v2/location/YOUR_LOCATION_ID/dashboard
|
|
155
155
|
```
|
|
156
156
|
|
|
157
|
-
## Enable Workflow Builder
|
|
157
|
+
## Enable the Workflow Builder
|
|
158
158
|
|
|
159
|
-
The builder + cloner + validator tools (workflow builder, funnel builder, form builder, pipeline builder, workflow cloner, validate_workflow) use GHL'
|
|
159
|
+
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 163 tools work fine — you just won't have workflow/funnel/form/pipeline editing. This is the flagship feature: do this step.
|
|
160
160
|
|
|
161
|
-
|
|
161
|
+
**One-paste capture (the supported path):**
|
|
162
|
+
|
|
163
|
+
1. In Claude, ask: `Run auto_capture_firebase_script`. It returns a small browser-console script.
|
|
164
|
+
2. In Chrome, open a tab logged into your GHL account. Press **F12** (Windows) or **Cmd+Option+I** (Mac), click the **Console** tab, paste the script, press Enter. If Chrome blocks the paste, type `allow pasting` in the Console first, then paste again.
|
|
165
|
+
3. The script extracts the three Firebase values and copies them to your clipboard as JSON.
|
|
166
|
+
4. Back in Claude: `Run enable_workflow_builder` and paste the JSON into the `firebase_paste` field. (First-time setup? You can instead add `firebase_paste` as a fifth field on `setup_ghl_mcp`.)
|
|
167
|
+
5. Restart Claude. The Firebase-gated tools are live.
|
|
168
|
+
|
|
169
|
+
Screenshots and the same script behind a copy button: [elitedcs.com/ghl-mcp-firebase](https://elitedcs.com/ghl-mcp-firebase)
|
|
170
|
+
|
|
171
|
+
> Firebase refresh tokens can rotate. If workflow tools stop working after a few weeks (`health_check` shows Firebase auth: FAIL), re-run `auto_capture_firebase_script` for fresh values and pass them to `enable_workflow_builder` again.
|
|
172
|
+
|
|
173
|
+
<details>
|
|
174
|
+
<summary><strong>Manual fallback</strong> (locked-down browsers that block console pasting or clipboard access)</summary>
|
|
162
175
|
|
|
163
176
|
1. Open `app.gohighlevel.com` in Chrome (or any Chromium browser), log in.
|
|
164
177
|
2. Open DevTools (Cmd+Opt+I on Mac, F12 on Windows) → **Application** tab → **IndexedDB** in the left panel.
|
|
@@ -168,20 +181,9 @@ Grab the three values from your GHL browser session, then re-run `setup_ghl_mcp`
|
|
|
168
181
|
6. Inside that row's value object: `uid` is your **ghl_user_id**.
|
|
169
182
|
7. Inside `value.stsTokenManager.refreshToken` is your **ghl_firebase_refresh_token**.
|
|
170
183
|
|
|
171
|
-
Then in Claude
|
|
172
|
-
|
|
173
|
-
```
|
|
174
|
-
Re-run setup_ghl_mcp with workflow builder:
|
|
175
|
-
email: YOUR_PURCHASE_EMAIL
|
|
176
|
-
license_key: YOUR_LICENSE_KEY
|
|
177
|
-
ghl_api_key: YOUR_GHL_API_KEY
|
|
178
|
-
ghl_location_id: YOUR_LOCATION_ID
|
|
179
|
-
ghl_user_id: FROM_STEP_6
|
|
180
|
-
ghl_firebase_api_key: FROM_STEP_5
|
|
181
|
-
ghl_firebase_refresh_token: FROM_STEP_7
|
|
182
|
-
```
|
|
184
|
+
Then in Claude, run `enable_workflow_builder` (or re-run `setup_ghl_mcp` with your license fields) passing the three values individually as `ghl_user_id`, `ghl_firebase_api_key`, and `ghl_firebase_refresh_token`.
|
|
183
185
|
|
|
184
|
-
>
|
|
186
|
+
</details>
|
|
185
187
|
|
|
186
188
|
## Working in Clients' Accounts (Multi-Tenant)
|
|
187
189
|
|
|
@@ -198,7 +200,7 @@ To unlock full builder access across multiple clients from one install:
|
|
|
198
200
|
```
|
|
199
201
|
This auto-detects and stores the owning **companyId**.
|
|
200
202
|
|
|
201
|
-
2. **Capture the client's Firebase values** from a browser session logged into *their* account (same
|
|
203
|
+
2. **Capture the client's Firebase values** from a browser session logged into *their* account (run `auto_capture_firebase_script` the same way as above, but paste it into a tab logged into the client's GHL).
|
|
202
204
|
|
|
203
205
|
3. **Register the client's company Firebase:**
|
|
204
206
|
```
|
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.48.
|
|
34
|
+
version: "3.48.1",
|
|
35
35
|
mcpName: "io.github.drjerryrelth/ghl-command",
|
|
36
36
|
description: "GoHighLevel MCP Server for Claude. 220 tools \u2014 full CRM, automation, marketing control, account-wide workflow audit, live funnel-capture verification, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
37
37
|
main: "dist/index.js",
|
|
@@ -7267,7 +7267,7 @@ function registerFirebaseCaptureScriptTool(server2) {
|
|
|
7267
7267
|
"",
|
|
7268
7268
|
"**Step 2.** Open DevTools \u2014 press `F12` on Windows / Linux, or `Cmd+Option+I` on Mac. Click the **Console** tab.",
|
|
7269
7269
|
"",
|
|
7270
|
-
"**Step 3.** Copy the script below, paste it into the Console, and press Enter:",
|
|
7270
|
+
"**Step 3.** Copy the script below, paste it into the Console, and press Enter. If Chrome blocks the paste with a warning, type `allow pasting` in the Console first, then paste again:",
|
|
7271
7271
|
"",
|
|
7272
7272
|
"```javascript",
|
|
7273
7273
|
FIREBASE_CAPTURE_SCRIPT,
|
|
@@ -7294,13 +7294,13 @@ function registerFirebaseCaptureScriptTool(server2) {
|
|
|
7294
7294
|
function registerLeadCaptureTool(server2) {
|
|
7295
7295
|
server2.tool(
|
|
7296
7296
|
"request_license",
|
|
7297
|
-
"Get a GHL Command license. Use this if you installed from npm but don't have a license yet (or setup_ghl_mcp says your license is missing/invalid). GHL Command is $97
|
|
7297
|
+
"Get a GHL Command license. Use this if you installed from npm but don't have a license yet (or setup_ghl_mcp says your license is missing/invalid). GHL Command is $97/mo \u2014 every sub-account you manage, 3-machine activation, includes the only programmatic GHL workflow builder. Leave your email and we'll send the purchase link + setup help; the tool also returns where to buy right now.",
|
|
7298
7298
|
{
|
|
7299
7299
|
email: import_zod38.z.string().email().describe("Your email \u2014 where to send the purchase link and setup help."),
|
|
7300
7300
|
name: import_zod38.z.string().optional().describe("Your name (optional).")
|
|
7301
7301
|
},
|
|
7302
7302
|
async (args) => {
|
|
7303
|
-
const buyUrl = "https://
|
|
7303
|
+
const buyUrl = "https://ghlcommand.com";
|
|
7304
7304
|
try {
|
|
7305
7305
|
const res = await fetch(CAPTURE_API, {
|
|
7306
7306
|
method: "POST",
|
|
@@ -7315,7 +7315,7 @@ function registerLeadCaptureTool(server2) {
|
|
|
7315
7315
|
text: [
|
|
7316
7316
|
data.message || "You're on the list.",
|
|
7317
7317
|
"",
|
|
7318
|
-
"GHL Command is $97
|
|
7318
|
+
"GHL Command is $97/mo: every sub-account you manage, 3 machines, including the only programmatic GHL workflow builder. Cancel anytime.",
|
|
7319
7319
|
"",
|
|
7320
7320
|
`Buy now: ${url}`,
|
|
7321
7321
|
"Your license key arrives by email within a couple minutes. Then run setup_ghl_mcp with your email + key."
|
|
@@ -7326,7 +7326,7 @@ function registerLeadCaptureTool(server2) {
|
|
|
7326
7326
|
return {
|
|
7327
7327
|
content: [{
|
|
7328
7328
|
type: "text",
|
|
7329
|
-
text: `Buy your GHL Command license ($97
|
|
7329
|
+
text: `Buy your GHL Command license ($97/mo) at ${buyUrl} \u2014 your key arrives by email within a couple minutes, then run setup_ghl_mcp with your email + key.`
|
|
7330
7330
|
}]
|
|
7331
7331
|
};
|
|
7332
7332
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elitedcs/ghl-mcp",
|
|
3
|
-
"version": "3.48.
|
|
3
|
+
"version": "3.48.1",
|
|
4
4
|
"mcpName": "io.github.drjerryrelth/ghl-command",
|
|
5
5
|
"description": "GoHighLevel MCP Server for Claude. 220 tools — full CRM, automation, marketing control, account-wide workflow audit, live funnel-capture verification, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
6
6
|
"main": "dist/index.js",
|