@leadbay/mcp 0.38.1 → 0.39.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 +48 -0
- package/dist/bin.js +579 -149
- package/dist/http-server.js +476 -80
- 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,53 @@
|
|
|
1
1
|
# Changelog — @leadbay/mcp
|
|
2
2
|
|
|
3
|
+
## 0.39.0 — 2026-09-15
|
|
4
|
+
|
|
5
|
+
Two changes merged since 0.38.2 (#231, #232), both product#4131.
|
|
6
|
+
|
|
7
|
+
- **A list of companies is one `leadbay_qualify_leads` call** (#231). "For each
|
|
8
|
+
of these companies" routed to `leadbay_research_lead_by_name_fuzzy`, once per
|
|
9
|
+
company: a first-time FR user sent 4,026 such calls in 84 minutes on
|
|
10
|
+
2026-09-14 and never came back. A list now goes to `leadbay_qualify_leads`
|
|
11
|
+
with `qualify: false`, which is free and takes 500 names per call. That free
|
|
12
|
+
identity pass answers with one row per company, in the user's order, with the
|
|
13
|
+
website and the company LinkedIn, plus counts of what Leadbay found and what
|
|
14
|
+
it lacks. The same 82 broker names on FR prod went from 269,542 to 20,846
|
|
15
|
+
characters. Past 100 rows, `leadbay_lead_job_status(compact: true, offset)`
|
|
16
|
+
pages the rest. Web research on the companies with no website is the last
|
|
17
|
+
NEXT STEPS row, behind the existing quote-then-confirm gate.
|
|
18
|
+
- **A local install saves the full list as a CSV** (#232). `bin.ts` passes a
|
|
19
|
+
`saveFile` capability through `ToolContext`; the hosted server does not pass
|
|
20
|
+
it, so it writes no file. The CSV lands in `~/Downloads`, or `~` when there
|
|
21
|
+
is no Downloads folder, and its path comes back in `file`.
|
|
22
|
+
|
|
23
|
+
## 0.38.2 — 2026-09-14
|
|
24
|
+
|
|
25
|
+
Four fixes merged since 0.38.1 (#224, #227, #228, #229).
|
|
26
|
+
|
|
27
|
+
- **Quota shows only when it matters** (#224). `leadbay_account_status`
|
|
28
|
+
answers a plain "what account am I connected to?" with user and org. The
|
|
29
|
+
quota gauge appears when the user asks about quota, usage or account status,
|
|
30
|
+
or when a window is exhausted. It keeps its dollars. The `QUOTA_REFRESH`
|
|
31
|
+
server instruction and the `enrich_titles`, `bulk_enrich_status` and
|
|
32
|
+
`build_campaign` descriptions no longer show refreshed quota after every
|
|
33
|
+
enrichment run. The job progress message drops its cents-spent segment.
|
|
34
|
+
- **A name lookup no longer answers with a different company** (#229,
|
|
35
|
+
product#4130). `leadbay_research_lead_by_name_fuzzy` took the typeahead's
|
|
36
|
+
first hit, which also matches on trigram similarity above 0.3, so "THEOMA
|
|
37
|
+
GESTION PRIVEE" returned PILOTE GESTION. A company hit now counts only when
|
|
38
|
+
every word of one name is in the other, with one wrong, missing or extra
|
|
39
|
+
letter per word. Otherwise the lookup goes on to the registry.
|
|
40
|
+
- **`leadbay_research_lead_by_id` refuses a missing `leadId`** (#228, Sentry
|
|
41
|
+
MCP-46). The call reached `/lenses/48189/leads/undefined` plus five
|
|
42
|
+
sub-requests. It is now `INVALID_PARAMS` before any request. `new_lens`,
|
|
43
|
+
`set_qualification_questions` and `find_new_leads` declare the backend's
|
|
44
|
+
limits: 255 characters, `min_ai_score` in [-30, 30], at most 10
|
|
45
|
+
`contact_titles`.
|
|
46
|
+
- **Artifact skin readable in dark mode** (#227, product#4057). The default
|
|
47
|
+
chip label read 1.16:1 in dark mode. The semantic colour pairs now flip with
|
|
48
|
+
the theme, long emails wrap inside the card, success and error pills carry
|
|
49
|
+
different glyphs, and a saved button stops showing "saved" after 1.6 s.
|
|
50
|
+
|
|
3
51
|
## 0.38.1 — 2026-09-12
|
|
4
52
|
|
|
5
53
|
Five fixes merged since 0.38.0 (#216, #219, #220, #221, #225). The backend
|