@leadbay/mcp 0.9.1 → 0.10.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 +62 -0
- package/README.md +43 -3
- package/dist/bin.js +385 -53
- package/dist/{chunk-ZRTAIXEJ.js → chunk-F3EWCHME.js} +1599 -244
- package/dist/{dist-X5AOPZ2V.js → dist-BHLIJAIH.js} +17 -5
- package/package.json +4 -2
|
@@ -21,11 +21,14 @@ import {
|
|
|
21
21
|
createDefaultBulkStore,
|
|
22
22
|
createLens,
|
|
23
23
|
createLensDraft,
|
|
24
|
+
createTopupLink,
|
|
24
25
|
deselectLeads,
|
|
25
26
|
discoverLeads,
|
|
27
|
+
dislikeLead,
|
|
26
28
|
dismissClarification,
|
|
27
29
|
enrichContacts,
|
|
28
30
|
enrichTitles,
|
|
31
|
+
followupsMap,
|
|
29
32
|
formatLoginError,
|
|
30
33
|
getClarification,
|
|
31
34
|
getContacts,
|
|
@@ -51,10 +54,13 @@ import {
|
|
|
51
54
|
importStatus,
|
|
52
55
|
isValidBulkId,
|
|
53
56
|
launchBulkEnrichment,
|
|
57
|
+
likeLead,
|
|
54
58
|
listLenses,
|
|
59
|
+
listLocations,
|
|
55
60
|
listMappableFields,
|
|
56
61
|
listSectors,
|
|
57
62
|
login,
|
|
63
|
+
openBillingPortal,
|
|
58
64
|
pickClarification,
|
|
59
65
|
prepareOutreach,
|
|
60
66
|
previewBulkEnrichment,
|
|
@@ -68,8 +74,8 @@ import {
|
|
|
68
74
|
removeEpilogue,
|
|
69
75
|
removePushback,
|
|
70
76
|
reportOutreach,
|
|
71
|
-
|
|
72
|
-
|
|
77
|
+
researchLeadById,
|
|
78
|
+
researchLeadByNameFuzzy,
|
|
73
79
|
resolveImportRows,
|
|
74
80
|
resolveRegion,
|
|
75
81
|
selectLeads,
|
|
@@ -80,7 +86,7 @@ import {
|
|
|
80
86
|
tools,
|
|
81
87
|
updateLens,
|
|
82
88
|
updateLensFilter
|
|
83
|
-
} from "./chunk-
|
|
89
|
+
} from "./chunk-F3EWCHME.js";
|
|
84
90
|
export {
|
|
85
91
|
InMemoryBulkStore,
|
|
86
92
|
LeadbayClient,
|
|
@@ -103,11 +109,14 @@ export {
|
|
|
103
109
|
createDefaultBulkStore,
|
|
104
110
|
createLens,
|
|
105
111
|
createLensDraft,
|
|
112
|
+
createTopupLink,
|
|
106
113
|
deselectLeads,
|
|
107
114
|
discoverLeads,
|
|
115
|
+
dislikeLead,
|
|
108
116
|
dismissClarification,
|
|
109
117
|
enrichContacts,
|
|
110
118
|
enrichTitles,
|
|
119
|
+
followupsMap,
|
|
111
120
|
formatLoginError,
|
|
112
121
|
getClarification,
|
|
113
122
|
getContacts,
|
|
@@ -133,10 +142,13 @@ export {
|
|
|
133
142
|
importStatus,
|
|
134
143
|
isValidBulkId,
|
|
135
144
|
launchBulkEnrichment,
|
|
145
|
+
likeLead,
|
|
136
146
|
listLenses,
|
|
147
|
+
listLocations,
|
|
137
148
|
listMappableFields,
|
|
138
149
|
listSectors,
|
|
139
150
|
login,
|
|
151
|
+
openBillingPortal,
|
|
140
152
|
pickClarification,
|
|
141
153
|
prepareOutreach,
|
|
142
154
|
previewBulkEnrichment,
|
|
@@ -150,8 +162,8 @@ export {
|
|
|
150
162
|
removeEpilogue,
|
|
151
163
|
removePushback,
|
|
152
164
|
reportOutreach,
|
|
153
|
-
|
|
154
|
-
|
|
165
|
+
researchLeadById,
|
|
166
|
+
researchLeadByNameFuzzy,
|
|
155
167
|
resolveImportRows,
|
|
156
168
|
resolveRegion,
|
|
157
169
|
selectLeads,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leadbay/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"mcpName": "io.github.leadbay/leadbay-mcp",
|
|
5
5
|
"description": "Model Context Protocol (MCP) server for Leadbay — AI lead discovery, qualification, and enrichment for Claude Desktop, Cursor, and Claude Code.",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"prepublishOnly": "pnpm run build && pnpm run typecheck && pnpm run test"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@modelcontextprotocol/sdk": "1.29.0"
|
|
29
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
30
|
+
"@sentry/node": "^9.0.0",
|
|
31
|
+
"posthog-node": "^4.5.0"
|
|
30
32
|
},
|
|
31
33
|
"devDependencies": {
|
|
32
34
|
"@anthropic-ai/sdk": "^0.40.0",
|