@elitedcs/ghl-mcp 3.17.0 → 3.17.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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.17.1 — Onboarding messaging fixes + public feedback tracker
4
+
5
+ **No tool changes — still 212 across 43 modules.** Bug-driven fixes from a buyer support ticket (Ryan Thomas, 2026-05-25), plus a public place to file feedback.
6
+
7
+ ### Firebase / Workflow Builder onboarding was steering buyers wrong
8
+
9
+ `workflow_builder_status` told users to "set env vars in start-mcp.sh or .env" to enable the 49 Firebase-gated tools. On the npm / Claude Desktop install path there is no `start-mcp.sh` or `.env`, so buyers added the Firebase values to the `claude_desktop_config.json` env block — which Claude Desktop passes unreliably — and got `health_check` → "Firebase: SKIP" after a restart. Now both `workflow_builder_status` and the `health_check` Firebase-SKIP detail steer to `enable_workflow_builder` (the supported path: it validates the values and writes them to `credentials.json`), explicitly warn off the config env-var path, and demote the raw env vars to an advanced/self-hosted note.
10
+
11
+ ### Dead npm "Repository" link → public feedback repo
12
+
13
+ `package.json` `repository`/`bugs` pointed at the **private** source repo, which npm renders as a clickable link that 404s for buyers. Now both point to the new public feedback tracker — **https://github.com/drjerryrelth/ghl-command-feedback** — where users can file bug reports and feature requests via issue templates.
14
+
3
15
  ## 3.17.0 — Multi-tenant bootstrap, internal hardening, test coverage
4
16
 
5
17
  **No new tools — still 212 across 43 modules. Internal hardening + a multi-tenant fix.**
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.17.0",
34
+ version: "3.17.1",
35
35
  description: "GoHighLevel MCP Server for Claude. 212 tools \u2014 full CRM, automation, marketing control, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
36
36
  main: "dist/index.js",
37
37
  bin: {
@@ -68,10 +68,11 @@ var require_package = __commonJS({
68
68
  homepage: "https://elitedcs.com/ghl-mcp-server",
69
69
  repository: {
70
70
  type: "git",
71
- url: "git+https://github.com/drjerryrelth/elite-dcs-ghl-mcp.git"
71
+ url: "git+https://github.com/drjerryrelth/ghl-command-feedback.git"
72
72
  },
73
73
  bugs: {
74
- url: "https://github.com/drjerryrelth/elite-dcs-ghl-mcp/issues"
74
+ url: "https://github.com/drjerryrelth/ghl-command-feedback/issues",
75
+ email: "support@cliniclaunchlab.com"
75
76
  },
76
77
  publishConfig: {
77
78
  access: "public"
@@ -4791,13 +4792,21 @@ function registerWorkflowBuilderTools(server2, client) {
4791
4792
  if (!client) {
4792
4793
  server2.tool(
4793
4794
  "workflow_builder_status",
4794
- "Check if the workflow builder (internal API) is configured. Requires GHL_FIREBASE_API_KEY, GHL_FIREBASE_REFRESH_TOKEN, GHL_API_KEY, GHL_LOCATION_ID, and GHL_USER_ID.",
4795
+ "Check if the workflow builder (internal API) is configured. Needs Firebase credentials, added via enable_workflow_builder.",
4795
4796
  {},
4796
4797
  async () => ({
4797
4798
  content: [
4798
4799
  {
4799
4800
  type: "text",
4800
- text: "Workflow builder is NOT configured. Missing required env vars: GHL_FIREBASE_API_KEY, GHL_FIREBASE_REFRESH_TOKEN, GHL_USER_ID. Set these in start-mcp.sh or .env to enable full workflow editing."
4801
+ text: [
4802
+ "Workflow builder is NOT configured (Firebase credentials missing).",
4803
+ "",
4804
+ "To enable the 49 Firebase-gated tools, run enable_workflow_builder with your three Firebase values (ghl_user_id, ghl_firebase_api_key, ghl_firebase_refresh_token) captured from a logged-in GHL browser tab. Step-by-step DevTools guide: https://elitedcs.com/ghl-mcp-firebase",
4805
+ "",
4806
+ "Do NOT add these as env vars in your Claude Desktop config \u2014 that path is unreliable and is the usual reason this still shows missing after a restart. enable_workflow_builder validates the values and saves them for you; then fully quit and reopen Claude.",
4807
+ "",
4808
+ "(Advanced / self-hosted wrapper only: GHL_FIREBASE_API_KEY, GHL_FIREBASE_REFRESH_TOKEN, GHL_USER_ID via start-mcp.sh or .env.)"
4809
+ ].join("\n")
4801
4810
  }
4802
4811
  ],
4803
4812
  isError: true
@@ -8041,7 +8050,7 @@ function registerDiagnosticTools(server2, installedVersion, client, builderClien
8041
8050
  })();
8042
8051
  const firebasePromise = (async () => {
8043
8052
  if (!builderClient) {
8044
- return { name: "Firebase auth (workflow builder)", status: "skip", detail: "Not configured. The 49 Firebase-gated tools need Firebase credentials. The other 163 tools work fine without. To add it: run enable_workflow_builder with the three Firebase values from your GHL browser session (see elitedcs.com/ghl-mcp-firebase for DevTools steps)." };
8053
+ return { name: "Firebase auth (workflow builder)", status: "skip", detail: "Not configured. The 49 Firebase-gated tools need Firebase credentials. The other 163 tools work fine without. To add it: run enable_workflow_builder with the three Firebase values from your GHL browser session (see elitedcs.com/ghl-mcp-firebase for DevTools steps). Do NOT put Firebase values as env vars in your Claude Desktop config \u2014 that path is unreliable and is the usual reason this still shows skip after a restart. enable_workflow_builder saves and verifies them for you." };
8045
8054
  }
8046
8055
  const result = await builderClient.checkAuth();
8047
8056
  const activeCompany = builderClient.getCurrentCompanyId();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elitedcs/ghl-mcp",
3
- "version": "3.17.0",
3
+ "version": "3.17.1",
4
4
  "description": "GoHighLevel MCP Server for Claude. 212 tools — full CRM, automation, marketing control, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -37,10 +37,11 @@
37
37
  "homepage": "https://elitedcs.com/ghl-mcp-server",
38
38
  "repository": {
39
39
  "type": "git",
40
- "url": "git+https://github.com/drjerryrelth/elite-dcs-ghl-mcp.git"
40
+ "url": "git+https://github.com/drjerryrelth/ghl-command-feedback.git"
41
41
  },
42
42
  "bugs": {
43
- "url": "https://github.com/drjerryrelth/elite-dcs-ghl-mcp/issues"
43
+ "url": "https://github.com/drjerryrelth/ghl-command-feedback/issues",
44
+ "email": "support@cliniclaunchlab.com"
44
45
  },
45
46
  "publishConfig": {
46
47
  "access": "public"