@leadbay/mcp 0.6.2 → 0.7.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 +27 -1
- package/dist/bin.js +334 -37
- package/dist/{chunk-NLG7GUZ3.js → chunk-3WNCQ7MP.js} +1744 -231
- package/dist/{dist-JUTSXWBL.js → dist-2RTYPHB3.js} +7 -1
- package/package.json +2 -1
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
compositeTools,
|
|
18
18
|
compositeWriteTools,
|
|
19
19
|
createClient,
|
|
20
|
+
createCustomField,
|
|
20
21
|
createDefaultBulkStore,
|
|
21
22
|
createLens,
|
|
22
23
|
createLensDraft,
|
|
@@ -47,6 +48,7 @@ import {
|
|
|
47
48
|
granularWriteTools,
|
|
48
49
|
importAndQualify,
|
|
49
50
|
importLeads,
|
|
51
|
+
importStatus,
|
|
50
52
|
isValidBulkId,
|
|
51
53
|
launchBulkEnrichment,
|
|
52
54
|
listLenses,
|
|
@@ -66,6 +68,7 @@ import {
|
|
|
66
68
|
reportOutreach,
|
|
67
69
|
researchCompany,
|
|
68
70
|
researchLead,
|
|
71
|
+
resolveImportRows,
|
|
69
72
|
resolveRegion,
|
|
70
73
|
selectLeads,
|
|
71
74
|
setActiveLens,
|
|
@@ -74,7 +77,7 @@ import {
|
|
|
74
77
|
tools,
|
|
75
78
|
updateLens,
|
|
76
79
|
updateLensFilter
|
|
77
|
-
} from "./chunk-
|
|
80
|
+
} from "./chunk-3WNCQ7MP.js";
|
|
78
81
|
export {
|
|
79
82
|
InMemoryBulkStore,
|
|
80
83
|
LeadbayClient,
|
|
@@ -93,6 +96,7 @@ export {
|
|
|
93
96
|
compositeTools,
|
|
94
97
|
compositeWriteTools,
|
|
95
98
|
createClient,
|
|
99
|
+
createCustomField,
|
|
96
100
|
createDefaultBulkStore,
|
|
97
101
|
createLens,
|
|
98
102
|
createLensDraft,
|
|
@@ -123,6 +127,7 @@ export {
|
|
|
123
127
|
granularWriteTools,
|
|
124
128
|
importAndQualify,
|
|
125
129
|
importLeads,
|
|
130
|
+
importStatus,
|
|
126
131
|
isValidBulkId,
|
|
127
132
|
launchBulkEnrichment,
|
|
128
133
|
listLenses,
|
|
@@ -142,6 +147,7 @@ export {
|
|
|
142
147
|
reportOutreach,
|
|
143
148
|
researchCompany,
|
|
144
149
|
researchLead,
|
|
150
|
+
resolveImportRows,
|
|
145
151
|
resolveRegion,
|
|
146
152
|
selectLeads,
|
|
147
153
|
setActiveLens,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leadbay/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.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",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
+
"prebuild": "pnpm --filter @leadbay/promptforge build",
|
|
21
22
|
"build": "tsup",
|
|
22
23
|
"typecheck": "tsc --noEmit",
|
|
23
24
|
"test": "vitest run",
|