@sellable/mcp 0.1.255 → 0.1.257
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/dist/api.d.ts +3 -0
- package/dist/api.js +24 -13
- package/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/server.js +13 -7
- package/dist/tools/campaigns.d.ts +41 -0
- package/dist/tools/campaigns.js +22 -3
- package/dist/tools/csv-dnc.d.ts +0 -36
- package/dist/tools/csv-dnc.js +2 -94
- package/dist/tools/engage-discovery.d.ts +21 -0
- package/dist/tools/engage-discovery.js +136 -9
- package/dist/tools/leads.d.ts +16 -214
- package/dist/tools/leads.js +1 -39
- package/dist/tools/registry.d.ts +514 -606
- package/dist/tools/tables.d.ts +53 -2
- package/dist/tools/tables.js +78 -0
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +0 -6
- package/skills/create-campaign-v2/references/filter-leads.md +0 -2
- package/skills/create-campaign-v2/references/lead-validation-preview.md +0 -2
- package/skills/create-campaign-v2/references/step-13-import-leads.md +1 -3
- package/skills/create-post/SKILL.md +67 -21
- package/skills/create-post/references/gold-standard-post-pack.md +11 -0
- package/skills/create-post/references/hook-research-playbook.md +205 -15
- package/skills/create-post/references/linkedin-preview-rendering.md +163 -0
- package/skills/create-post/references/post-file-contract.md +12 -0
- package/skills/create-post/references/post-validation.md +101 -14
- package/skills/find-leads/SKILL.md +0 -6
- package/skills/research/config.json +9 -0
|
@@ -90,7 +90,6 @@ should stay focused on source evidence.
|
|
|
90
90
|
- `mcp__sellable__search_prospeo`
|
|
91
91
|
- `mcp__sellable__search_prospeo_companies`
|
|
92
92
|
- `mcp__sellable__confirm_prospeo_company_accounts`
|
|
93
|
-
- `mcp__sellable__list_dnc_entries`
|
|
94
93
|
- `mcp__sellable__load_csv_dnc_entries`
|
|
95
94
|
- `mcp__sellable__load_csv_domains`
|
|
96
95
|
- `mcp__sellable__load_csv_linkedin_leads`
|
|
@@ -106,9 +105,6 @@ should stay focused on source evidence.
|
|
|
106
105
|
list after confirming the exact active workspace. Keep the mechanism to
|
|
107
106
|
Sellable DNC and `DNC Check`, not provider search work or Prospeo domain
|
|
108
107
|
filters.
|
|
109
|
-
- If the user asks to see the current DNC count, list names, or first page
|
|
110
|
-
before import, call `list_dnc_entries`. Report the active workspace name and
|
|
111
|
-
ID from the tool response before any DNC write.
|
|
112
108
|
- Do not infer sender identities from meeting attendance alone. Only treat someone as a sender when the source material explicitly identifies them as a sender or supplies their LinkedIn URL.
|
|
113
109
|
- Do not ask Layer 1 questions already answered by a transcript, ICP doc, or Layer 0 research.
|
|
114
110
|
- Do not include Apollo in the explorer set for this phase.
|
|
@@ -140,8 +136,6 @@ Execution flow:
|
|
|
140
136
|
DNC entries.
|
|
141
137
|
- Campaign creation already includes `DNC Check`, which checks domain/profile
|
|
142
138
|
before message generation.
|
|
143
|
-
- If the user wants the existing DNC count or first page first, call
|
|
144
|
-
`list_dnc_entries` before previewing the import.
|
|
145
139
|
3. If the user has a CSV of LinkedIn profile URLs on disk, call `load_csv_linkedin_leads` first.
|
|
146
140
|
- Preview, confirm, then review the resulting lead list before `confirm_lead_list`.
|
|
147
141
|
- Confirmed execution uploads the raw CSV file, starts the server-owned import job, and waits on lead-list readiness before returning.
|