@leadbay/mcp 0.38.1 → 0.38.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 +28 -0
- package/dist/bin.js +206 -44
- package/dist/http-server.js +199 -44
- package/dist/installer-electron.js +1 -1
- package/dist/installer-gui.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog — @leadbay/mcp
|
|
2
2
|
|
|
3
|
+
## 0.38.2 — 2026-09-14
|
|
4
|
+
|
|
5
|
+
Four fixes merged since 0.38.1 (#224, #227, #228, #229).
|
|
6
|
+
|
|
7
|
+
- **Quota shows only when it matters** (#224). `leadbay_account_status`
|
|
8
|
+
answers a plain "what account am I connected to?" with user and org. The
|
|
9
|
+
quota gauge appears when the user asks about quota, usage or account status,
|
|
10
|
+
or when a window is exhausted. It keeps its dollars. The `QUOTA_REFRESH`
|
|
11
|
+
server instruction and the `enrich_titles`, `bulk_enrich_status` and
|
|
12
|
+
`build_campaign` descriptions no longer show refreshed quota after every
|
|
13
|
+
enrichment run. The job progress message drops its cents-spent segment.
|
|
14
|
+
- **A name lookup no longer answers with a different company** (#229,
|
|
15
|
+
product#4130). `leadbay_research_lead_by_name_fuzzy` took the typeahead's
|
|
16
|
+
first hit, which also matches on trigram similarity above 0.3, so "THEOMA
|
|
17
|
+
GESTION PRIVEE" returned PILOTE GESTION. A company hit now counts only when
|
|
18
|
+
every word of one name is in the other, with one wrong, missing or extra
|
|
19
|
+
letter per word. Otherwise the lookup goes on to the registry.
|
|
20
|
+
- **`leadbay_research_lead_by_id` refuses a missing `leadId`** (#228, Sentry
|
|
21
|
+
MCP-46). The call reached `/lenses/48189/leads/undefined` plus five
|
|
22
|
+
sub-requests. It is now `INVALID_PARAMS` before any request. `new_lens`,
|
|
23
|
+
`set_qualification_questions` and `find_new_leads` declare the backend's
|
|
24
|
+
limits: 255 characters, `min_ai_score` in [-30, 30], at most 10
|
|
25
|
+
`contact_titles`.
|
|
26
|
+
- **Artifact skin readable in dark mode** (#227, product#4057). The default
|
|
27
|
+
chip label read 1.16:1 in dark mode. The semantic colour pairs now flip with
|
|
28
|
+
the theme, long emails wrap inside the card, success and error pills carry
|
|
29
|
+
different glyphs, and a saved button stops showing "saved" after 1.6 s.
|
|
30
|
+
|
|
3
31
|
## 0.38.1 — 2026-09-12
|
|
4
32
|
|
|
5
33
|
Five fixes merged since 0.38.0 (#216, #219, #220, #221, #225). The backend
|