@elitedcs/ghl-mcp 3.34.0 → 3.34.2

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.34.2 — Docs: launch pricing + the task-notification trap
4
+
5
+ - README pricing updated for launch: $97/mo at ghlcommand.com, unlimited
6
+ sub-accounts on 3 machines, first-month-back guarantee.
7
+ - Workflow docs corrected: the task action type is `task-notification`
8
+ (hyphen). The underscore form saves and validates but is silently
9
+ skipped at runtime — live-verified. Validator enforcement ships next.
10
+
11
+ ## 3.34.1 — CLI list-locations shows companyId
12
+
13
+ `ghl-mcp cli list-locations` now includes each location's `companyId` (same as
14
+ the `list_registered_locations` tool) — the quick way to tell whether your
15
+ locations live under one agency company or several. Different companyIds =
16
+ separate agency accounts, each needing its own `firebaseByCompany` entry for
17
+ the workflow builder.
18
+
3
19
  ## 3.34.0 — Headless/server deployment hardening
4
20
 
5
21
  Built for production server installs (Linux droplets, containers, MCP
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Works with **both the Claude Desktop App and Claude Code terminal** — your choice.
8
8
 
9
- **License required.** Buy at [elitedcs.com/ghl-mcp-server](https://elitedcs.com/ghl-mcp-server?utm_source=npm&utm_medium=readme) — one-time $97, three-machine activation, no subscription. **30-day time-back guarantee**: save 5+ hours on one client build or refund.
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
11
  Built by [Elite DCs, LLC](https://elitedcs.com).
12
12
 
@@ -79,7 +79,7 @@ This MCP (Model Context Protocol) server connects Claude directly to GoHighLevel
79
79
 
80
80
  ### 1. Buy a license
81
81
 
82
- [elitedcs.com/ghl-mcp-server](https://elitedcs.com/ghl-mcp-server?utm_source=npm&utm_medium=readme) — one-time $97. License key arrives by email within 1-2 minutes.
82
+ [ghlcommand.com](https://ghlcommand.com?utm_source=npm&utm_medium=readme) — $97/mo, every sub-account you manage. License key arrives by email within 1-2 minutes.
83
83
 
84
84
  ### 2. Install in Claude Desktop App
85
85
 
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.34.0",
34
+ version: "3.34.2",
35
35
  mcpName: "io.github.drjerryrelth/ghl-command",
36
36
  description: "GoHighLevel MCP Server for Claude. 218 tools \u2014 full CRM, automation, marketing control, account-wide workflow audit, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
37
37
  main: "dist/index.js",
@@ -9752,7 +9752,10 @@ async function cmdRegisterAgencyKey(argv, registry2) {
9752
9752
  return EXIT_OK;
9753
9753
  }
9754
9754
  function cmdListLocations(registry2) {
9755
- const locs = registry2.listLocations();
9755
+ const locs = registry2.listLocations().map((loc) => {
9756
+ const companyId = registry2.getToken(loc.locationId)?.companyId;
9757
+ return { ...loc, ...companyId ? { companyId } : {} };
9758
+ });
9756
9759
  const companies = registry2.listCompanyFirebases();
9757
9760
  const out = {
9758
9761
  registryPath: tokenRegistryPath(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elitedcs/ghl-mcp",
3
- "version": "3.34.0",
3
+ "version": "3.34.2",
4
4
  "mcpName": "io.github.drjerryrelth/ghl-command",
5
5
  "description": "GoHighLevel MCP Server for Claude. 218 tools — full CRM, automation, marketing control, account-wide workflow audit, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
6
6
  "main": "dist/index.js",
@@ -130,7 +130,7 @@
130
130
  "title": "Task Title",
131
131
  "dueDate": "1",
132
132
  "body": "Task description text",
133
- "type": "task_notification",
133
+ "type": "task-notification",
134
134
  "__customInputs__": {}
135
135
  },
136
136
  "notes": "dueDate is days from now as string. assignedTo is a user ID."