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