@elitedcs/ghl-mcp 3.52.0 → 3.52.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 +11 -0
- package/README.md +3 -1
- package/dist/index.js +8 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.52.1 — Docs: positioning vs. HighLevel's official Anthropic MCP
|
|
4
|
+
|
|
5
|
+
No behavior changes; README only.
|
|
6
|
+
|
|
7
|
+
- Added a "How this differs from HighLevel's official MCP" callout: HighLevel's
|
|
8
|
+
official Anthropic MCP reads/writes your CRM over the public API (free, good);
|
|
9
|
+
GHL Command adds the builders the public API doesn't expose — workflow builder,
|
|
10
|
+
funnel/page builder, form builder, deep cloning, `audit_workflows`, and
|
|
11
|
+
Blueprint. Official MCP = read/write your CRM; GHL Command = build and fix it.
|
|
12
|
+
They stack together.
|
|
13
|
+
|
|
3
14
|
## 3.52.0 — Fix: `update_page_content` now actually writes page content
|
|
4
15
|
|
|
5
16
|
`update_page_content` was a silent no-op — it POSTed the page envelope to GHL's
|
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ Works with **both the Claude Desktop App and Claude Code terminal** — your cho
|
|
|
10
10
|
|
|
11
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.
|
|
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.
|
|
14
|
+
|
|
13
15
|
Built by [Elite DCs, LLC](https://elitedcs.com).
|
|
14
16
|
|
|
15
17
|
---
|
|
@@ -809,7 +811,7 @@ Built by **[Elite DCs, LLC](https://elitedcs.com)** — a digital marketing and
|
|
|
809
811
|
|
|
810
812
|
**Tech stack:** TypeScript, Node.js, esbuild, MCP SDK, Zod, GHL API v2, Firebase Auth
|
|
811
813
|
|
|
812
|
-
**Version:** 3.
|
|
814
|
+
**Version:** 3.52.1
|
|
813
815
|
|
|
814
816
|
---
|
|
815
817
|
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,11 @@ var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
|
7
7
|
var __getProtoOf = Object.getPrototypeOf;
|
|
8
8
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
9
|
var __commonJS = (cb, mod) => function __require() {
|
|
10
|
-
|
|
10
|
+
try {
|
|
11
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
12
|
+
} catch (e) {
|
|
13
|
+
throw mod = 0, e;
|
|
14
|
+
}
|
|
11
15
|
};
|
|
12
16
|
var __copyProps = (to, from, except, desc) => {
|
|
13
17
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
@@ -31,7 +35,7 @@ var require_package = __commonJS({
|
|
|
31
35
|
"package.json"(exports2, module2) {
|
|
32
36
|
module2.exports = {
|
|
33
37
|
name: "@elitedcs/ghl-mcp",
|
|
34
|
-
version: "3.52.
|
|
38
|
+
version: "3.52.2",
|
|
35
39
|
mcpName: "io.github.drjerryrelth/ghl-command",
|
|
36
40
|
description: "GoHighLevel MCP Server for Claude. 232 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
41
|
main: "dist/index.js",
|
|
@@ -91,7 +95,7 @@ var require_package = __commonJS({
|
|
|
91
95
|
node: ">=20"
|
|
92
96
|
},
|
|
93
97
|
dependencies: {
|
|
94
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
98
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
95
99
|
dotenv: "^16.5.0",
|
|
96
100
|
"playwright-core": "^1.61.1",
|
|
97
101
|
zod: "^3.24.4"
|
|
@@ -99,7 +103,7 @@ var require_package = __commonJS({
|
|
|
99
103
|
devDependencies: {
|
|
100
104
|
"@clack/prompts": "^1.1.0",
|
|
101
105
|
"@types/node": "^22.15.3",
|
|
102
|
-
esbuild: "^0.
|
|
106
|
+
esbuild: "^0.28.1",
|
|
103
107
|
open: "^11.0.0",
|
|
104
108
|
typescript: "^5.8.3",
|
|
105
109
|
vitest: "^4.1.6"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elitedcs/ghl-mcp",
|
|
3
|
-
"version": "3.52.
|
|
3
|
+
"version": "3.52.2",
|
|
4
4
|
"mcpName": "io.github.drjerryrelth/ghl-command",
|
|
5
5
|
"description": "GoHighLevel MCP Server for Claude. 232 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",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"node": ">=20"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
63
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
64
64
|
"dotenv": "^16.5.0",
|
|
65
65
|
"playwright-core": "^1.61.1",
|
|
66
66
|
"zod": "^3.24.4"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@clack/prompts": "^1.1.0",
|
|
70
70
|
"@types/node": "^22.15.3",
|
|
71
|
-
"esbuild": "^0.
|
|
71
|
+
"esbuild": "^0.28.1",
|
|
72
72
|
"open": "^11.0.0",
|
|
73
73
|
"typescript": "^5.8.3",
|
|
74
74
|
"vitest": "^4.1.6"
|