@leadbay/mcp 0.2.1 → 0.3.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 +84 -0
- package/MIGRATION.md +72 -0
- package/README.md +78 -27
- package/dist/bin.js +378 -83
- package/dist/{chunk-BGJ6JWIO.js → chunk-NED7ATJI.js} +1216 -28
- package/dist/{dist-PIXZN6N4.js → dist-YMZYFHZK.js} +15 -1
- package/package.json +2 -1
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
|
+
InMemoryBulkStore,
|
|
3
4
|
LeadbayClient,
|
|
5
|
+
LocalBulkStore,
|
|
4
6
|
REGIONS,
|
|
5
7
|
accountStatus,
|
|
6
8
|
addNote,
|
|
7
9
|
adjustAudience,
|
|
8
10
|
answerClarification,
|
|
11
|
+
bulkEnrichStatus,
|
|
9
12
|
bulkQualifyLeads,
|
|
10
13
|
clearMockJournal,
|
|
11
14
|
clearSelection,
|
|
@@ -14,6 +17,7 @@ import {
|
|
|
14
17
|
compositeTools,
|
|
15
18
|
compositeWriteTools,
|
|
16
19
|
createClient,
|
|
20
|
+
createDefaultBulkStore,
|
|
17
21
|
createLens,
|
|
18
22
|
createLensDraft,
|
|
19
23
|
deselectLeads,
|
|
@@ -21,6 +25,7 @@ import {
|
|
|
21
25
|
dismissClarification,
|
|
22
26
|
enrichContacts,
|
|
23
27
|
enrichTitles,
|
|
28
|
+
formatLoginError,
|
|
24
29
|
getClarification,
|
|
25
30
|
getContacts,
|
|
26
31
|
getEnrichmentJobTitles,
|
|
@@ -40,6 +45,8 @@ import {
|
|
|
40
45
|
granularReadTools,
|
|
41
46
|
granularTools,
|
|
42
47
|
granularWriteTools,
|
|
48
|
+
importLeads,
|
|
49
|
+
isValidBulkId,
|
|
43
50
|
launchBulkEnrichment,
|
|
44
51
|
listLenses,
|
|
45
52
|
listSectors,
|
|
@@ -64,14 +71,17 @@ import {
|
|
|
64
71
|
tools,
|
|
65
72
|
updateLens,
|
|
66
73
|
updateLensFilter
|
|
67
|
-
} from "./chunk-
|
|
74
|
+
} from "./chunk-NED7ATJI.js";
|
|
68
75
|
export {
|
|
76
|
+
InMemoryBulkStore,
|
|
69
77
|
LeadbayClient,
|
|
78
|
+
LocalBulkStore,
|
|
70
79
|
REGIONS,
|
|
71
80
|
accountStatus,
|
|
72
81
|
addNote,
|
|
73
82
|
adjustAudience,
|
|
74
83
|
answerClarification,
|
|
84
|
+
bulkEnrichStatus,
|
|
75
85
|
bulkQualifyLeads,
|
|
76
86
|
clearMockJournal,
|
|
77
87
|
clearSelection,
|
|
@@ -80,6 +90,7 @@ export {
|
|
|
80
90
|
compositeTools,
|
|
81
91
|
compositeWriteTools,
|
|
82
92
|
createClient,
|
|
93
|
+
createDefaultBulkStore,
|
|
83
94
|
createLens,
|
|
84
95
|
createLensDraft,
|
|
85
96
|
deselectLeads,
|
|
@@ -87,6 +98,7 @@ export {
|
|
|
87
98
|
dismissClarification,
|
|
88
99
|
enrichContacts,
|
|
89
100
|
enrichTitles,
|
|
101
|
+
formatLoginError,
|
|
90
102
|
getClarification,
|
|
91
103
|
getContacts,
|
|
92
104
|
getEnrichmentJobTitles,
|
|
@@ -106,6 +118,8 @@ export {
|
|
|
106
118
|
granularReadTools,
|
|
107
119
|
granularTools,
|
|
108
120
|
granularWriteTools,
|
|
121
|
+
importLeads,
|
|
122
|
+
isValidBulkId,
|
|
109
123
|
launchBulkEnrichment,
|
|
110
124
|
listLenses,
|
|
111
125
|
listSectors,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leadbay/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for Leadbay — AI lead discovery, qualification, and enrichment for Claude Desktop, Cursor, and Claude Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"@modelcontextprotocol/sdk": "1.29.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
+
"@anthropic-ai/sdk": "^0.40.0",
|
|
30
31
|
"@leadbay/core": "workspace:*"
|
|
31
32
|
},
|
|
32
33
|
"engines": {
|