@elitedcs/ghl-mcp 3.76.0 → 3.77.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 +22 -0
- package/README.md +1 -1
- package/dist/index.js +8681 -2023
- package/guide/guide.html +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.77.0 — the account you aimed at, even when two things run at once
|
|
4
|
+
|
|
5
|
+
`switch_location` used to change your API key first and your location a moment later.
|
|
6
|
+
A failed switch was already put back exactly as it was, so that part was never the
|
|
7
|
+
problem. The gap in between was: anything running alongside the switch could read the
|
|
8
|
+
**new account's key against the old account's id**. Claude issues tool calls in
|
|
9
|
+
parallel, so that window was real, not theoretical.
|
|
10
|
+
|
|
11
|
+
The switch now verifies the new account with a throwaway probe and touches nothing until
|
|
12
|
+
that succeeds. Key and location are then committed together with no pause between them,
|
|
13
|
+
so another call in flight sees either the old account or the new one, never half of each.
|
|
14
|
+
|
|
15
|
+
**`health_check` stopped quoting you a tool count you do not have.** On a licence that
|
|
16
|
+
does not include every module it reported the full registered number, which is not what
|
|
17
|
+
you can run. It now states the tools your licence includes, and says separately how many
|
|
18
|
+
are not included and answer with a notice.
|
|
19
|
+
|
|
20
|
+
Everything else added in this release sits outside the GHL Command licence and answers
|
|
21
|
+
with a notice, the same as the tools already in that position.
|
|
22
|
+
|
|
23
|
+
Counts unchanged: 248 tools, 51 modules, free tier 112.
|
|
24
|
+
|
|
3
25
|
## 3.76.0 — the workflows you cannot edit, and the audit that said they were fine
|
|
4
26
|
|
|
5
27
|
GoHighLevel tightened what its workflow builder will save. Workflows built from older
|
package/README.md
CHANGED