@leadbay/mcp 0.12.1 → 0.14.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 +15 -0
- package/README.md +32 -11
- package/dist/bin.js +217 -26
- package/dist/{chunk-J2Y4LCFM.js → chunk-SX4SKXMM.js} +5267 -204
- package/dist/{dist-YYVFSDMH.js → dist-CRE74TH2.js} +77 -3
- package/package.json +1 -1
|
@@ -1,21 +1,41 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
|
+
AgentMemoryCaptureInputSchema,
|
|
4
|
+
AgentMemoryEntrySchema,
|
|
5
|
+
AgentMemoryInjectionError,
|
|
6
|
+
AgentMemoryScopeSchema,
|
|
7
|
+
AgentMemorySourceSchema,
|
|
8
|
+
AgentMemoryTombstoneSchema,
|
|
3
9
|
InMemoryBulkStore,
|
|
4
10
|
LeadbayClient,
|
|
5
11
|
LocalBulkStore,
|
|
6
12
|
REGIONS,
|
|
7
13
|
accountStatus,
|
|
14
|
+
addLeadsToCampaign,
|
|
8
15
|
addNote,
|
|
9
16
|
adjustAudience,
|
|
17
|
+
agentMemoryCapture,
|
|
18
|
+
agentMemoryRecall,
|
|
19
|
+
agentMemoryReview,
|
|
20
|
+
agentMemoryTools,
|
|
10
21
|
answerClarification,
|
|
22
|
+
appendEntry,
|
|
23
|
+
appendTombstone,
|
|
24
|
+
assertSafeInsight,
|
|
11
25
|
bulkEnrichStatus,
|
|
12
26
|
bulkQualifyLeads,
|
|
27
|
+
campaignCallSheet,
|
|
28
|
+
campaignProgression,
|
|
29
|
+
clearAgentMemoryCache,
|
|
13
30
|
clearMockJournal,
|
|
14
31
|
clearSelection,
|
|
15
32
|
clearUserPrompt,
|
|
16
33
|
compositeReadTools,
|
|
17
34
|
compositeTools,
|
|
18
35
|
compositeWriteTools,
|
|
36
|
+
consolidate,
|
|
37
|
+
createAgentMemoryId,
|
|
38
|
+
createCampaign,
|
|
19
39
|
createClient,
|
|
20
40
|
createCustomField,
|
|
21
41
|
createDefaultBulkStore,
|
|
@@ -28,6 +48,7 @@ import {
|
|
|
28
48
|
dismissClarification,
|
|
29
49
|
enrichContacts,
|
|
30
50
|
enrichTitles,
|
|
51
|
+
ensureAgentMemorySummary,
|
|
31
52
|
followupsMap,
|
|
32
53
|
formatLoginError,
|
|
33
54
|
getClarification,
|
|
@@ -49,17 +70,24 @@ import {
|
|
|
49
70
|
granularReadTools,
|
|
50
71
|
granularTools,
|
|
51
72
|
granularWriteTools,
|
|
73
|
+
hashAccountId,
|
|
52
74
|
importAndQualify,
|
|
53
75
|
importLeads,
|
|
54
76
|
importStatus,
|
|
77
|
+
invalidateAgentMemoryCache,
|
|
78
|
+
isAgentMemoryEnabled,
|
|
55
79
|
isValidBulkId,
|
|
56
80
|
launchBulkEnrichment,
|
|
57
81
|
likeLead,
|
|
82
|
+
listCampaigns,
|
|
58
83
|
listLenses,
|
|
59
84
|
listLocations,
|
|
60
85
|
listMappableFields,
|
|
61
86
|
listSectors,
|
|
62
87
|
login,
|
|
88
|
+
makeAgentMemoryEntry,
|
|
89
|
+
makeAgentMemoryTombstone,
|
|
90
|
+
normalizeInsight,
|
|
63
91
|
openBillingPortal,
|
|
64
92
|
pickClarification,
|
|
65
93
|
prepareOutreach,
|
|
@@ -69,13 +97,20 @@ import {
|
|
|
69
97
|
pullLeads,
|
|
70
98
|
qualifyLead,
|
|
71
99
|
qualifyStatus,
|
|
100
|
+
readEntries,
|
|
101
|
+
readTombstones,
|
|
72
102
|
recallOrderedTitles,
|
|
73
103
|
refinePrompt,
|
|
74
104
|
removeEpilogue,
|
|
75
105
|
removePushback,
|
|
106
|
+
reportFriction,
|
|
76
107
|
reportOutreach,
|
|
77
108
|
researchLeadById,
|
|
78
109
|
researchLeadByNameFuzzy,
|
|
110
|
+
resolveAgentMemoryForClient,
|
|
111
|
+
resolveAgentMemoryPaths,
|
|
112
|
+
resolveAgentMemoryRoot,
|
|
113
|
+
resolveAgentMemorySummary,
|
|
79
114
|
resolveImportRows,
|
|
80
115
|
resolveRegion,
|
|
81
116
|
selectLeads,
|
|
@@ -84,26 +119,48 @@ import {
|
|
|
84
119
|
setPushback,
|
|
85
120
|
setUserPrompt,
|
|
86
121
|
tools,
|
|
122
|
+
tourPlan,
|
|
87
123
|
updateLens,
|
|
88
|
-
updateLensFilter
|
|
89
|
-
|
|
124
|
+
updateLensFilter,
|
|
125
|
+
withAgentMemoryMeta
|
|
126
|
+
} from "./chunk-SX4SKXMM.js";
|
|
90
127
|
export {
|
|
128
|
+
AgentMemoryCaptureInputSchema,
|
|
129
|
+
AgentMemoryEntrySchema,
|
|
130
|
+
AgentMemoryInjectionError,
|
|
131
|
+
AgentMemoryScopeSchema,
|
|
132
|
+
AgentMemorySourceSchema,
|
|
133
|
+
AgentMemoryTombstoneSchema,
|
|
91
134
|
InMemoryBulkStore,
|
|
92
135
|
LeadbayClient,
|
|
93
136
|
LocalBulkStore,
|
|
94
137
|
REGIONS,
|
|
95
138
|
accountStatus,
|
|
139
|
+
addLeadsToCampaign,
|
|
96
140
|
addNote,
|
|
97
141
|
adjustAudience,
|
|
142
|
+
agentMemoryCapture,
|
|
143
|
+
agentMemoryRecall,
|
|
144
|
+
agentMemoryReview,
|
|
145
|
+
agentMemoryTools,
|
|
98
146
|
answerClarification,
|
|
147
|
+
appendEntry,
|
|
148
|
+
appendTombstone,
|
|
149
|
+
assertSafeInsight,
|
|
99
150
|
bulkEnrichStatus,
|
|
100
151
|
bulkQualifyLeads,
|
|
152
|
+
campaignCallSheet,
|
|
153
|
+
campaignProgression,
|
|
154
|
+
clearAgentMemoryCache,
|
|
101
155
|
clearMockJournal,
|
|
102
156
|
clearSelection,
|
|
103
157
|
clearUserPrompt,
|
|
104
158
|
compositeReadTools,
|
|
105
159
|
compositeTools,
|
|
106
160
|
compositeWriteTools,
|
|
161
|
+
consolidate,
|
|
162
|
+
createAgentMemoryId,
|
|
163
|
+
createCampaign,
|
|
107
164
|
createClient,
|
|
108
165
|
createCustomField,
|
|
109
166
|
createDefaultBulkStore,
|
|
@@ -116,6 +173,7 @@ export {
|
|
|
116
173
|
dismissClarification,
|
|
117
174
|
enrichContacts,
|
|
118
175
|
enrichTitles,
|
|
176
|
+
ensureAgentMemorySummary,
|
|
119
177
|
followupsMap,
|
|
120
178
|
formatLoginError,
|
|
121
179
|
getClarification,
|
|
@@ -137,17 +195,24 @@ export {
|
|
|
137
195
|
granularReadTools,
|
|
138
196
|
granularTools,
|
|
139
197
|
granularWriteTools,
|
|
198
|
+
hashAccountId,
|
|
140
199
|
importAndQualify,
|
|
141
200
|
importLeads,
|
|
142
201
|
importStatus,
|
|
202
|
+
invalidateAgentMemoryCache,
|
|
203
|
+
isAgentMemoryEnabled,
|
|
143
204
|
isValidBulkId,
|
|
144
205
|
launchBulkEnrichment,
|
|
145
206
|
likeLead,
|
|
207
|
+
listCampaigns,
|
|
146
208
|
listLenses,
|
|
147
209
|
listLocations,
|
|
148
210
|
listMappableFields,
|
|
149
211
|
listSectors,
|
|
150
212
|
login,
|
|
213
|
+
makeAgentMemoryEntry,
|
|
214
|
+
makeAgentMemoryTombstone,
|
|
215
|
+
normalizeInsight,
|
|
151
216
|
openBillingPortal,
|
|
152
217
|
pickClarification,
|
|
153
218
|
prepareOutreach,
|
|
@@ -157,13 +222,20 @@ export {
|
|
|
157
222
|
pullLeads,
|
|
158
223
|
qualifyLead,
|
|
159
224
|
qualifyStatus,
|
|
225
|
+
readEntries,
|
|
226
|
+
readTombstones,
|
|
160
227
|
recallOrderedTitles,
|
|
161
228
|
refinePrompt,
|
|
162
229
|
removeEpilogue,
|
|
163
230
|
removePushback,
|
|
231
|
+
reportFriction,
|
|
164
232
|
reportOutreach,
|
|
165
233
|
researchLeadById,
|
|
166
234
|
researchLeadByNameFuzzy,
|
|
235
|
+
resolveAgentMemoryForClient,
|
|
236
|
+
resolveAgentMemoryPaths,
|
|
237
|
+
resolveAgentMemoryRoot,
|
|
238
|
+
resolveAgentMemorySummary,
|
|
167
239
|
resolveImportRows,
|
|
168
240
|
resolveRegion,
|
|
169
241
|
selectLeads,
|
|
@@ -172,6 +244,8 @@ export {
|
|
|
172
244
|
setPushback,
|
|
173
245
|
setUserPrompt,
|
|
174
246
|
tools,
|
|
247
|
+
tourPlan,
|
|
175
248
|
updateLens,
|
|
176
|
-
updateLensFilter
|
|
249
|
+
updateLensFilter,
|
|
250
|
+
withAgentMemoryMeta
|
|
177
251
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leadbay/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.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",
|