@leadbay/mcp 0.2.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/LICENSE +21 -0
- package/MIGRATION.md +140 -0
- package/README.md +273 -0
- package/dist/bin.js +824 -0
- package/dist/chunk-BGJ6JWIO.js +3010 -0
- package/dist/dist-PIXZN6N4.js +133 -0
- package/package.json +56 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
LeadbayClient,
|
|
4
|
+
REGIONS,
|
|
5
|
+
accountStatus,
|
|
6
|
+
addNote,
|
|
7
|
+
adjustAudience,
|
|
8
|
+
answerClarification,
|
|
9
|
+
bulkQualifyLeads,
|
|
10
|
+
clearMockJournal,
|
|
11
|
+
clearSelection,
|
|
12
|
+
clearUserPrompt,
|
|
13
|
+
compositeReadTools,
|
|
14
|
+
compositeTools,
|
|
15
|
+
compositeWriteTools,
|
|
16
|
+
createClient,
|
|
17
|
+
createLens,
|
|
18
|
+
createLensDraft,
|
|
19
|
+
deselectLeads,
|
|
20
|
+
discoverLeads,
|
|
21
|
+
dismissClarification,
|
|
22
|
+
enrichContacts,
|
|
23
|
+
enrichTitles,
|
|
24
|
+
getClarification,
|
|
25
|
+
getContacts,
|
|
26
|
+
getEnrichmentJobTitles,
|
|
27
|
+
getEpilogueResponses,
|
|
28
|
+
getLeadActivities,
|
|
29
|
+
getLeadNotes,
|
|
30
|
+
getLeadProfile,
|
|
31
|
+
getLensFilter,
|
|
32
|
+
getLensScoring,
|
|
33
|
+
getMockJournal,
|
|
34
|
+
getProspectingActions,
|
|
35
|
+
getQuota,
|
|
36
|
+
getSelectionIds,
|
|
37
|
+
getTasteProfile,
|
|
38
|
+
getUserPrompt,
|
|
39
|
+
getWebFetch,
|
|
40
|
+
granularReadTools,
|
|
41
|
+
granularTools,
|
|
42
|
+
granularWriteTools,
|
|
43
|
+
launchBulkEnrichment,
|
|
44
|
+
listLenses,
|
|
45
|
+
listSectors,
|
|
46
|
+
login,
|
|
47
|
+
pickClarification,
|
|
48
|
+
prepareOutreach,
|
|
49
|
+
previewBulkEnrichment,
|
|
50
|
+
promoteLens,
|
|
51
|
+
pullLeads,
|
|
52
|
+
qualifyLead,
|
|
53
|
+
recallOrderedTitles,
|
|
54
|
+
refinePrompt,
|
|
55
|
+
removeEpilogue,
|
|
56
|
+
reportOutreach,
|
|
57
|
+
researchCompany,
|
|
58
|
+
researchLead,
|
|
59
|
+
resolveRegion,
|
|
60
|
+
selectLeads,
|
|
61
|
+
setActiveLens,
|
|
62
|
+
setEpilogueStatus,
|
|
63
|
+
setUserPrompt,
|
|
64
|
+
tools,
|
|
65
|
+
updateLens,
|
|
66
|
+
updateLensFilter
|
|
67
|
+
} from "./chunk-BGJ6JWIO.js";
|
|
68
|
+
export {
|
|
69
|
+
LeadbayClient,
|
|
70
|
+
REGIONS,
|
|
71
|
+
accountStatus,
|
|
72
|
+
addNote,
|
|
73
|
+
adjustAudience,
|
|
74
|
+
answerClarification,
|
|
75
|
+
bulkQualifyLeads,
|
|
76
|
+
clearMockJournal,
|
|
77
|
+
clearSelection,
|
|
78
|
+
clearUserPrompt,
|
|
79
|
+
compositeReadTools,
|
|
80
|
+
compositeTools,
|
|
81
|
+
compositeWriteTools,
|
|
82
|
+
createClient,
|
|
83
|
+
createLens,
|
|
84
|
+
createLensDraft,
|
|
85
|
+
deselectLeads,
|
|
86
|
+
discoverLeads,
|
|
87
|
+
dismissClarification,
|
|
88
|
+
enrichContacts,
|
|
89
|
+
enrichTitles,
|
|
90
|
+
getClarification,
|
|
91
|
+
getContacts,
|
|
92
|
+
getEnrichmentJobTitles,
|
|
93
|
+
getEpilogueResponses,
|
|
94
|
+
getLeadActivities,
|
|
95
|
+
getLeadNotes,
|
|
96
|
+
getLeadProfile,
|
|
97
|
+
getLensFilter,
|
|
98
|
+
getLensScoring,
|
|
99
|
+
getMockJournal,
|
|
100
|
+
getProspectingActions,
|
|
101
|
+
getQuota,
|
|
102
|
+
getSelectionIds,
|
|
103
|
+
getTasteProfile,
|
|
104
|
+
getUserPrompt,
|
|
105
|
+
getWebFetch,
|
|
106
|
+
granularReadTools,
|
|
107
|
+
granularTools,
|
|
108
|
+
granularWriteTools,
|
|
109
|
+
launchBulkEnrichment,
|
|
110
|
+
listLenses,
|
|
111
|
+
listSectors,
|
|
112
|
+
login,
|
|
113
|
+
pickClarification,
|
|
114
|
+
prepareOutreach,
|
|
115
|
+
previewBulkEnrichment,
|
|
116
|
+
promoteLens,
|
|
117
|
+
pullLeads,
|
|
118
|
+
qualifyLead,
|
|
119
|
+
recallOrderedTitles,
|
|
120
|
+
refinePrompt,
|
|
121
|
+
removeEpilogue,
|
|
122
|
+
reportOutreach,
|
|
123
|
+
researchCompany,
|
|
124
|
+
researchLead,
|
|
125
|
+
resolveRegion,
|
|
126
|
+
selectLeads,
|
|
127
|
+
setActiveLens,
|
|
128
|
+
setEpilogueStatus,
|
|
129
|
+
setUserPrompt,
|
|
130
|
+
tools,
|
|
131
|
+
updateLens,
|
|
132
|
+
updateLensFilter
|
|
133
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@leadbay/mcp",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server for Leadbay — AI lead discovery, qualification, and enrichment for Claude Desktop, Cursor, and Claude Code.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"leadbay-mcp": "dist/bin.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/",
|
|
11
|
+
"README.md",
|
|
12
|
+
"MIGRATION.md",
|
|
13
|
+
"CHANGELOG.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"test:smoke": "vitest run --config vitest.smoke.config.ts",
|
|
24
|
+
"prepublishOnly": "pnpm run build && pnpm run typecheck && pnpm run test"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@modelcontextprotocol/sdk": "1.29.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@leadbay/core": "workspace:*"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=22"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"mcp",
|
|
37
|
+
"model-context-protocol",
|
|
38
|
+
"leadbay",
|
|
39
|
+
"lead-generation",
|
|
40
|
+
"b2b",
|
|
41
|
+
"sales",
|
|
42
|
+
"claude-desktop",
|
|
43
|
+
"cursor"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/leadbay/leadclaw.git",
|
|
48
|
+
"directory": "packages/mcp"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/leadbay/leadclaw/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/leadbay/leadclaw/tree/main/packages/mcp#readme",
|
|
54
|
+
"author": "Leadbay",
|
|
55
|
+
"license": "MIT"
|
|
56
|
+
}
|