@sellable/mcp 0.1.258 → 0.1.260
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/server.js +4 -1
- package/dist/tools/csv-dnc.d.ts +36 -0
- package/dist/tools/csv-dnc.js +94 -2
- package/dist/tools/engage-discovery.d.ts +21 -18
- package/dist/tools/engage-discovery.js +90 -112
- package/dist/tools/leads.d.ts +381 -21
- package/dist/tools/leads.js +219 -5
- package/dist/tools/registry.d.ts +213 -21
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +6 -0
- package/skills/create-campaign-v2/references/filter-leads.md +2 -0
- package/skills/create-campaign-v2/references/lead-validation-preview.md +2 -0
- package/skills/create-campaign-v2/references/step-13-import-leads.md +3 -1
- package/skills/create-post/SKILL.md +147 -120
- package/skills/create-post/references/gold-standard-post-pack.md +0 -11
- package/skills/create-post/references/hook-research-playbook.md +276 -311
- package/skills/create-post/references/post-file-contract.md +8 -16
- package/skills/create-post/references/post-validation.md +142 -211
- package/skills/create-post/references/premise-development.md +250 -5
- package/skills/find-leads/SKILL.md +6 -0
package/dist/tools/registry.d.ts
CHANGED
|
@@ -1742,19 +1742,19 @@ export declare const allTools: ({
|
|
|
1742
1742
|
type: string;
|
|
1743
1743
|
description: string;
|
|
1744
1744
|
};
|
|
1745
|
-
|
|
1745
|
+
excludePostUrls: {
|
|
1746
1746
|
type: string;
|
|
1747
|
+
items: {
|
|
1748
|
+
type: string;
|
|
1749
|
+
};
|
|
1747
1750
|
description: string;
|
|
1748
1751
|
};
|
|
1749
|
-
|
|
1752
|
+
targetFollowerMin: {
|
|
1750
1753
|
type: string;
|
|
1751
1754
|
description: string;
|
|
1752
1755
|
};
|
|
1753
|
-
|
|
1756
|
+
targetFollowerMax: {
|
|
1754
1757
|
type: string;
|
|
1755
|
-
items: {
|
|
1756
|
-
type: string;
|
|
1757
|
-
};
|
|
1758
1758
|
description: string;
|
|
1759
1759
|
};
|
|
1760
1760
|
};
|
|
@@ -1941,6 +1941,11 @@ export declare const allTools: ({
|
|
|
1941
1941
|
leadListId?: undefined;
|
|
1942
1942
|
leadListName?: undefined;
|
|
1943
1943
|
linkedInColumn?: undefined;
|
|
1944
|
+
limit?: undefined;
|
|
1945
|
+
search?: undefined;
|
|
1946
|
+
listName?: undefined;
|
|
1947
|
+
sourceType?: undefined;
|
|
1948
|
+
includeDeleted?: undefined;
|
|
1944
1949
|
csvText?: undefined;
|
|
1945
1950
|
rawText?: undefined;
|
|
1946
1951
|
name?: undefined;
|
|
@@ -1948,7 +1953,6 @@ export declare const allTools: ({
|
|
|
1948
1953
|
exclude?: undefined;
|
|
1949
1954
|
seedCompanies?: undefined;
|
|
1950
1955
|
seedDomains?: undefined;
|
|
1951
|
-
limit?: undefined;
|
|
1952
1956
|
sort?: undefined;
|
|
1953
1957
|
previewOnly?: undefined;
|
|
1954
1958
|
companySearchToken?: undefined;
|
|
@@ -1965,6 +1969,7 @@ export declare const allTools: ({
|
|
|
1965
1969
|
mode?: undefined;
|
|
1966
1970
|
targetEngagerCount?: undefined;
|
|
1967
1971
|
maxPostsToScrape?: undefined;
|
|
1972
|
+
allowInvalidSignalPosts?: undefined;
|
|
1968
1973
|
tableId?: undefined;
|
|
1969
1974
|
campaignName?: undefined;
|
|
1970
1975
|
keepInSync?: undefined;
|
|
@@ -2129,6 +2134,11 @@ export declare const allTools: ({
|
|
|
2129
2134
|
leadListId?: undefined;
|
|
2130
2135
|
leadListName?: undefined;
|
|
2131
2136
|
linkedInColumn?: undefined;
|
|
2137
|
+
limit?: undefined;
|
|
2138
|
+
search?: undefined;
|
|
2139
|
+
listName?: undefined;
|
|
2140
|
+
sourceType?: undefined;
|
|
2141
|
+
includeDeleted?: undefined;
|
|
2132
2142
|
csvText?: undefined;
|
|
2133
2143
|
rawText?: undefined;
|
|
2134
2144
|
name?: undefined;
|
|
@@ -2136,7 +2146,6 @@ export declare const allTools: ({
|
|
|
2136
2146
|
exclude?: undefined;
|
|
2137
2147
|
seedCompanies?: undefined;
|
|
2138
2148
|
seedDomains?: undefined;
|
|
2139
|
-
limit?: undefined;
|
|
2140
2149
|
sort?: undefined;
|
|
2141
2150
|
previewOnly?: undefined;
|
|
2142
2151
|
companySearchToken?: undefined;
|
|
@@ -2153,6 +2162,7 @@ export declare const allTools: ({
|
|
|
2153
2162
|
mode?: undefined;
|
|
2154
2163
|
targetEngagerCount?: undefined;
|
|
2155
2164
|
maxPostsToScrape?: undefined;
|
|
2165
|
+
allowInvalidSignalPosts?: undefined;
|
|
2156
2166
|
tableId?: undefined;
|
|
2157
2167
|
campaignName?: undefined;
|
|
2158
2168
|
keepInSync?: undefined;
|
|
@@ -2216,6 +2226,11 @@ export declare const allTools: ({
|
|
|
2216
2226
|
leadListId?: undefined;
|
|
2217
2227
|
leadListName?: undefined;
|
|
2218
2228
|
linkedInColumn?: undefined;
|
|
2229
|
+
limit?: undefined;
|
|
2230
|
+
search?: undefined;
|
|
2231
|
+
listName?: undefined;
|
|
2232
|
+
sourceType?: undefined;
|
|
2233
|
+
includeDeleted?: undefined;
|
|
2219
2234
|
csvText?: undefined;
|
|
2220
2235
|
rawText?: undefined;
|
|
2221
2236
|
name?: undefined;
|
|
@@ -2223,7 +2238,6 @@ export declare const allTools: ({
|
|
|
2223
2238
|
exclude?: undefined;
|
|
2224
2239
|
seedCompanies?: undefined;
|
|
2225
2240
|
seedDomains?: undefined;
|
|
2226
|
-
limit?: undefined;
|
|
2227
2241
|
sort?: undefined;
|
|
2228
2242
|
previewOnly?: undefined;
|
|
2229
2243
|
companySearchToken?: undefined;
|
|
@@ -2240,6 +2254,7 @@ export declare const allTools: ({
|
|
|
2240
2254
|
mode?: undefined;
|
|
2241
2255
|
targetEngagerCount?: undefined;
|
|
2242
2256
|
maxPostsToScrape?: undefined;
|
|
2257
|
+
allowInvalidSignalPosts?: undefined;
|
|
2243
2258
|
tableId?: undefined;
|
|
2244
2259
|
campaignName?: undefined;
|
|
2245
2260
|
keepInSync?: undefined;
|
|
@@ -2375,6 +2390,11 @@ export declare const allTools: ({
|
|
|
2375
2390
|
leadListId?: undefined;
|
|
2376
2391
|
leadListName?: undefined;
|
|
2377
2392
|
linkedInColumn?: undefined;
|
|
2393
|
+
limit?: undefined;
|
|
2394
|
+
search?: undefined;
|
|
2395
|
+
listName?: undefined;
|
|
2396
|
+
sourceType?: undefined;
|
|
2397
|
+
includeDeleted?: undefined;
|
|
2378
2398
|
csvText?: undefined;
|
|
2379
2399
|
rawText?: undefined;
|
|
2380
2400
|
name?: undefined;
|
|
@@ -2382,7 +2402,6 @@ export declare const allTools: ({
|
|
|
2382
2402
|
exclude?: undefined;
|
|
2383
2403
|
seedCompanies?: undefined;
|
|
2384
2404
|
seedDomains?: undefined;
|
|
2385
|
-
limit?: undefined;
|
|
2386
2405
|
sort?: undefined;
|
|
2387
2406
|
previewOnly?: undefined;
|
|
2388
2407
|
companySearchToken?: undefined;
|
|
@@ -2399,6 +2418,7 @@ export declare const allTools: ({
|
|
|
2399
2418
|
mode?: undefined;
|
|
2400
2419
|
targetEngagerCount?: undefined;
|
|
2401
2420
|
maxPostsToScrape?: undefined;
|
|
2421
|
+
allowInvalidSignalPosts?: undefined;
|
|
2402
2422
|
tableId?: undefined;
|
|
2403
2423
|
campaignName?: undefined;
|
|
2404
2424
|
keepInSync?: undefined;
|
|
@@ -2476,6 +2496,11 @@ export declare const allTools: ({
|
|
|
2476
2496
|
leadListId?: undefined;
|
|
2477
2497
|
leadListName?: undefined;
|
|
2478
2498
|
linkedInColumn?: undefined;
|
|
2499
|
+
limit?: undefined;
|
|
2500
|
+
search?: undefined;
|
|
2501
|
+
listName?: undefined;
|
|
2502
|
+
sourceType?: undefined;
|
|
2503
|
+
includeDeleted?: undefined;
|
|
2479
2504
|
csvText?: undefined;
|
|
2480
2505
|
rawText?: undefined;
|
|
2481
2506
|
name?: undefined;
|
|
@@ -2483,7 +2508,6 @@ export declare const allTools: ({
|
|
|
2483
2508
|
exclude?: undefined;
|
|
2484
2509
|
seedCompanies?: undefined;
|
|
2485
2510
|
seedDomains?: undefined;
|
|
2486
|
-
limit?: undefined;
|
|
2487
2511
|
sort?: undefined;
|
|
2488
2512
|
previewOnly?: undefined;
|
|
2489
2513
|
companySearchToken?: undefined;
|
|
@@ -2500,6 +2524,7 @@ export declare const allTools: ({
|
|
|
2500
2524
|
mode?: undefined;
|
|
2501
2525
|
targetEngagerCount?: undefined;
|
|
2502
2526
|
maxPostsToScrape?: undefined;
|
|
2527
|
+
allowInvalidSignalPosts?: undefined;
|
|
2503
2528
|
tableId?: undefined;
|
|
2504
2529
|
campaignName?: undefined;
|
|
2505
2530
|
keepInSync?: undefined;
|
|
@@ -2586,6 +2611,11 @@ export declare const allTools: ({
|
|
|
2586
2611
|
query?: undefined;
|
|
2587
2612
|
keywords?: undefined;
|
|
2588
2613
|
domainColumn?: undefined;
|
|
2614
|
+
limit?: undefined;
|
|
2615
|
+
search?: undefined;
|
|
2616
|
+
listName?: undefined;
|
|
2617
|
+
sourceType?: undefined;
|
|
2618
|
+
includeDeleted?: undefined;
|
|
2589
2619
|
csvText?: undefined;
|
|
2590
2620
|
rawText?: undefined;
|
|
2591
2621
|
name?: undefined;
|
|
@@ -2593,7 +2623,6 @@ export declare const allTools: ({
|
|
|
2593
2623
|
exclude?: undefined;
|
|
2594
2624
|
seedCompanies?: undefined;
|
|
2595
2625
|
seedDomains?: undefined;
|
|
2596
|
-
limit?: undefined;
|
|
2597
2626
|
sort?: undefined;
|
|
2598
2627
|
previewOnly?: undefined;
|
|
2599
2628
|
companySearchToken?: undefined;
|
|
@@ -2610,6 +2639,7 @@ export declare const allTools: ({
|
|
|
2610
2639
|
mode?: undefined;
|
|
2611
2640
|
targetEngagerCount?: undefined;
|
|
2612
2641
|
maxPostsToScrape?: undefined;
|
|
2642
|
+
allowInvalidSignalPosts?: undefined;
|
|
2613
2643
|
tableId?: undefined;
|
|
2614
2644
|
campaignName?: undefined;
|
|
2615
2645
|
keepInSync?: undefined;
|
|
@@ -2623,6 +2653,110 @@ export declare const allTools: ({
|
|
|
2623
2653
|
};
|
|
2624
2654
|
required: string[];
|
|
2625
2655
|
};
|
|
2656
|
+
} | {
|
|
2657
|
+
name: string;
|
|
2658
|
+
description: string;
|
|
2659
|
+
inputSchema: {
|
|
2660
|
+
type: string;
|
|
2661
|
+
properties: {
|
|
2662
|
+
page: {
|
|
2663
|
+
type: string;
|
|
2664
|
+
description: string;
|
|
2665
|
+
};
|
|
2666
|
+
limit: {
|
|
2667
|
+
type: string;
|
|
2668
|
+
description: string;
|
|
2669
|
+
};
|
|
2670
|
+
search: {
|
|
2671
|
+
type: string;
|
|
2672
|
+
description: string;
|
|
2673
|
+
};
|
|
2674
|
+
listName: {
|
|
2675
|
+
type: string;
|
|
2676
|
+
description: string;
|
|
2677
|
+
};
|
|
2678
|
+
sourceType: {
|
|
2679
|
+
type: string;
|
|
2680
|
+
enum: string[];
|
|
2681
|
+
description: string;
|
|
2682
|
+
};
|
|
2683
|
+
includeDeleted: {
|
|
2684
|
+
type: string;
|
|
2685
|
+
description: string;
|
|
2686
|
+
};
|
|
2687
|
+
provider?: undefined;
|
|
2688
|
+
campaignOfferId?: undefined;
|
|
2689
|
+
confirmed?: undefined;
|
|
2690
|
+
searchMode?: undefined;
|
|
2691
|
+
organization_num_employees_ranges?: undefined;
|
|
2692
|
+
organization_locations?: undefined;
|
|
2693
|
+
organization_not_locations?: undefined;
|
|
2694
|
+
q_organization_keyword_tags?: undefined;
|
|
2695
|
+
organization_industry_tag_ids?: undefined;
|
|
2696
|
+
latest_funding_amount_min?: undefined;
|
|
2697
|
+
latest_funding_amount_max?: undefined;
|
|
2698
|
+
organization_revenue_min?: undefined;
|
|
2699
|
+
organization_revenue_max?: undefined;
|
|
2700
|
+
person_titles?: undefined;
|
|
2701
|
+
person_seniorities?: undefined;
|
|
2702
|
+
person_locations?: undefined;
|
|
2703
|
+
include_similar_titles?: undefined;
|
|
2704
|
+
q_keywords?: undefined;
|
|
2705
|
+
filters?: undefined;
|
|
2706
|
+
companyFilters?: undefined;
|
|
2707
|
+
contactFilters?: undefined;
|
|
2708
|
+
searchId?: undefined;
|
|
2709
|
+
searchName?: undefined;
|
|
2710
|
+
companySearchMode?: undefined;
|
|
2711
|
+
uploadedDomains?: undefined;
|
|
2712
|
+
currentStep?: undefined;
|
|
2713
|
+
filterType?: undefined;
|
|
2714
|
+
query?: undefined;
|
|
2715
|
+
keywords?: undefined;
|
|
2716
|
+
filePath?: undefined;
|
|
2717
|
+
domainColumn?: undefined;
|
|
2718
|
+
selectedColumns?: undefined;
|
|
2719
|
+
confirmationToken?: undefined;
|
|
2720
|
+
leadListId?: undefined;
|
|
2721
|
+
leadListName?: undefined;
|
|
2722
|
+
linkedInColumn?: undefined;
|
|
2723
|
+
csvText?: undefined;
|
|
2724
|
+
rawText?: undefined;
|
|
2725
|
+
name?: undefined;
|
|
2726
|
+
include?: undefined;
|
|
2727
|
+
exclude?: undefined;
|
|
2728
|
+
seedCompanies?: undefined;
|
|
2729
|
+
seedDomains?: undefined;
|
|
2730
|
+
sort?: undefined;
|
|
2731
|
+
previewOnly?: undefined;
|
|
2732
|
+
companySearchToken?: undefined;
|
|
2733
|
+
selectedCompanyIds?: undefined;
|
|
2734
|
+
domainFilterId?: undefined;
|
|
2735
|
+
type?: undefined;
|
|
2736
|
+
profileUrl?: undefined;
|
|
2737
|
+
postUrl?: undefined;
|
|
2738
|
+
companyUrl?: undefined;
|
|
2739
|
+
headlineICPCriteria?: undefined;
|
|
2740
|
+
rubricGuidelines?: undefined;
|
|
2741
|
+
sourceLeadListId?: undefined;
|
|
2742
|
+
targetLeadCount?: undefined;
|
|
2743
|
+
mode?: undefined;
|
|
2744
|
+
targetEngagerCount?: undefined;
|
|
2745
|
+
maxPostsToScrape?: undefined;
|
|
2746
|
+
allowInvalidSignalPosts?: undefined;
|
|
2747
|
+
tableId?: undefined;
|
|
2748
|
+
campaignName?: undefined;
|
|
2749
|
+
keepInSync?: undefined;
|
|
2750
|
+
jobId?: undefined;
|
|
2751
|
+
reviewBatchLimit?: undefined;
|
|
2752
|
+
allowPartialSourceList?: undefined;
|
|
2753
|
+
includeRawImportResult?: undefined;
|
|
2754
|
+
selections?: undefined;
|
|
2755
|
+
selectionMode?: undefined;
|
|
2756
|
+
scrapePlanMode?: undefined;
|
|
2757
|
+
};
|
|
2758
|
+
required: never[];
|
|
2759
|
+
};
|
|
2626
2760
|
} | {
|
|
2627
2761
|
name: string;
|
|
2628
2762
|
description: string;
|
|
@@ -2693,11 +2827,15 @@ export declare const allTools: ({
|
|
|
2693
2827
|
selectedColumns?: undefined;
|
|
2694
2828
|
leadListId?: undefined;
|
|
2695
2829
|
leadListName?: undefined;
|
|
2830
|
+
limit?: undefined;
|
|
2831
|
+
search?: undefined;
|
|
2832
|
+
listName?: undefined;
|
|
2833
|
+
sourceType?: undefined;
|
|
2834
|
+
includeDeleted?: undefined;
|
|
2696
2835
|
include?: undefined;
|
|
2697
2836
|
exclude?: undefined;
|
|
2698
2837
|
seedCompanies?: undefined;
|
|
2699
2838
|
seedDomains?: undefined;
|
|
2700
|
-
limit?: undefined;
|
|
2701
2839
|
sort?: undefined;
|
|
2702
2840
|
previewOnly?: undefined;
|
|
2703
2841
|
companySearchToken?: undefined;
|
|
@@ -2714,6 +2852,7 @@ export declare const allTools: ({
|
|
|
2714
2852
|
mode?: undefined;
|
|
2715
2853
|
targetEngagerCount?: undefined;
|
|
2716
2854
|
maxPostsToScrape?: undefined;
|
|
2855
|
+
allowInvalidSignalPosts?: undefined;
|
|
2717
2856
|
tableId?: undefined;
|
|
2718
2857
|
campaignName?: undefined;
|
|
2719
2858
|
keepInSync?: undefined;
|
|
@@ -2784,12 +2923,16 @@ export declare const allTools: ({
|
|
|
2784
2923
|
leadListId?: undefined;
|
|
2785
2924
|
leadListName?: undefined;
|
|
2786
2925
|
linkedInColumn?: undefined;
|
|
2926
|
+
limit?: undefined;
|
|
2927
|
+
search?: undefined;
|
|
2928
|
+
listName?: undefined;
|
|
2929
|
+
sourceType?: undefined;
|
|
2930
|
+
includeDeleted?: undefined;
|
|
2787
2931
|
csvText?: undefined;
|
|
2788
2932
|
rawText?: undefined;
|
|
2789
2933
|
name?: undefined;
|
|
2790
2934
|
seedCompanies?: undefined;
|
|
2791
2935
|
seedDomains?: undefined;
|
|
2792
|
-
limit?: undefined;
|
|
2793
2936
|
sort?: undefined;
|
|
2794
2937
|
previewOnly?: undefined;
|
|
2795
2938
|
companySearchToken?: undefined;
|
|
@@ -2806,6 +2949,7 @@ export declare const allTools: ({
|
|
|
2806
2949
|
mode?: undefined;
|
|
2807
2950
|
targetEngagerCount?: undefined;
|
|
2808
2951
|
maxPostsToScrape?: undefined;
|
|
2952
|
+
allowInvalidSignalPosts?: undefined;
|
|
2809
2953
|
tableId?: undefined;
|
|
2810
2954
|
campaignName?: undefined;
|
|
2811
2955
|
keepInSync?: undefined;
|
|
@@ -3671,6 +3815,10 @@ export declare const allTools: ({
|
|
|
3671
3815
|
leadListId?: undefined;
|
|
3672
3816
|
leadListName?: undefined;
|
|
3673
3817
|
linkedInColumn?: undefined;
|
|
3818
|
+
search?: undefined;
|
|
3819
|
+
listName?: undefined;
|
|
3820
|
+
sourceType?: undefined;
|
|
3821
|
+
includeDeleted?: undefined;
|
|
3674
3822
|
csvText?: undefined;
|
|
3675
3823
|
rawText?: undefined;
|
|
3676
3824
|
name?: undefined;
|
|
@@ -3690,6 +3838,7 @@ export declare const allTools: ({
|
|
|
3690
3838
|
mode?: undefined;
|
|
3691
3839
|
targetEngagerCount?: undefined;
|
|
3692
3840
|
maxPostsToScrape?: undefined;
|
|
3841
|
+
allowInvalidSignalPosts?: undefined;
|
|
3693
3842
|
tableId?: undefined;
|
|
3694
3843
|
campaignName?: undefined;
|
|
3695
3844
|
keepInSync?: undefined;
|
|
@@ -3770,13 +3919,17 @@ export declare const allTools: ({
|
|
|
3770
3919
|
leadListId?: undefined;
|
|
3771
3920
|
leadListName?: undefined;
|
|
3772
3921
|
linkedInColumn?: undefined;
|
|
3922
|
+
limit?: undefined;
|
|
3923
|
+
search?: undefined;
|
|
3924
|
+
listName?: undefined;
|
|
3925
|
+
sourceType?: undefined;
|
|
3926
|
+
includeDeleted?: undefined;
|
|
3773
3927
|
csvText?: undefined;
|
|
3774
3928
|
rawText?: undefined;
|
|
3775
3929
|
include?: undefined;
|
|
3776
3930
|
exclude?: undefined;
|
|
3777
3931
|
seedCompanies?: undefined;
|
|
3778
3932
|
seedDomains?: undefined;
|
|
3779
|
-
limit?: undefined;
|
|
3780
3933
|
sort?: undefined;
|
|
3781
3934
|
previewOnly?: undefined;
|
|
3782
3935
|
domainFilterId?: undefined;
|
|
@@ -3791,6 +3944,7 @@ export declare const allTools: ({
|
|
|
3791
3944
|
mode?: undefined;
|
|
3792
3945
|
targetEngagerCount?: undefined;
|
|
3793
3946
|
maxPostsToScrape?: undefined;
|
|
3947
|
+
allowInvalidSignalPosts?: undefined;
|
|
3794
3948
|
tableId?: undefined;
|
|
3795
3949
|
campaignName?: undefined;
|
|
3796
3950
|
keepInSync?: undefined;
|
|
@@ -4807,6 +4961,11 @@ export declare const allTools: ({
|
|
|
4807
4961
|
leadListId?: undefined;
|
|
4808
4962
|
leadListName?: undefined;
|
|
4809
4963
|
linkedInColumn?: undefined;
|
|
4964
|
+
limit?: undefined;
|
|
4965
|
+
search?: undefined;
|
|
4966
|
+
listName?: undefined;
|
|
4967
|
+
sourceType?: undefined;
|
|
4968
|
+
includeDeleted?: undefined;
|
|
4810
4969
|
csvText?: undefined;
|
|
4811
4970
|
rawText?: undefined;
|
|
4812
4971
|
name?: undefined;
|
|
@@ -4814,7 +4973,6 @@ export declare const allTools: ({
|
|
|
4814
4973
|
exclude?: undefined;
|
|
4815
4974
|
seedCompanies?: undefined;
|
|
4816
4975
|
seedDomains?: undefined;
|
|
4817
|
-
limit?: undefined;
|
|
4818
4976
|
sort?: undefined;
|
|
4819
4977
|
previewOnly?: undefined;
|
|
4820
4978
|
companySearchToken?: undefined;
|
|
@@ -4830,6 +4988,7 @@ export declare const allTools: ({
|
|
|
4830
4988
|
mode?: undefined;
|
|
4831
4989
|
targetEngagerCount?: undefined;
|
|
4832
4990
|
maxPostsToScrape?: undefined;
|
|
4991
|
+
allowInvalidSignalPosts?: undefined;
|
|
4833
4992
|
tableId?: undefined;
|
|
4834
4993
|
campaignName?: undefined;
|
|
4835
4994
|
keepInSync?: undefined;
|
|
@@ -4957,6 +5116,10 @@ export declare const allTools: ({
|
|
|
4957
5116
|
leadListId?: undefined;
|
|
4958
5117
|
leadListName?: undefined;
|
|
4959
5118
|
linkedInColumn?: undefined;
|
|
5119
|
+
search?: undefined;
|
|
5120
|
+
listName?: undefined;
|
|
5121
|
+
sourceType?: undefined;
|
|
5122
|
+
includeDeleted?: undefined;
|
|
4960
5123
|
csvText?: undefined;
|
|
4961
5124
|
rawText?: undefined;
|
|
4962
5125
|
name?: undefined;
|
|
@@ -4974,6 +5137,7 @@ export declare const allTools: ({
|
|
|
4974
5137
|
mode?: undefined;
|
|
4975
5138
|
targetEngagerCount?: undefined;
|
|
4976
5139
|
maxPostsToScrape?: undefined;
|
|
5140
|
+
allowInvalidSignalPosts?: undefined;
|
|
4977
5141
|
tableId?: undefined;
|
|
4978
5142
|
campaignName?: undefined;
|
|
4979
5143
|
keepInSync?: undefined;
|
|
@@ -5048,6 +5212,10 @@ export declare const allTools: ({
|
|
|
5048
5212
|
type: string;
|
|
5049
5213
|
description: string;
|
|
5050
5214
|
};
|
|
5215
|
+
allowInvalidSignalPosts: {
|
|
5216
|
+
type: string;
|
|
5217
|
+
description: string;
|
|
5218
|
+
};
|
|
5051
5219
|
rubricGuidelines: {
|
|
5052
5220
|
type: string;
|
|
5053
5221
|
items: {
|
|
@@ -5089,6 +5257,11 @@ export declare const allTools: ({
|
|
|
5089
5257
|
confirmationToken?: undefined;
|
|
5090
5258
|
leadListId?: undefined;
|
|
5091
5259
|
linkedInColumn?: undefined;
|
|
5260
|
+
limit?: undefined;
|
|
5261
|
+
search?: undefined;
|
|
5262
|
+
listName?: undefined;
|
|
5263
|
+
sourceType?: undefined;
|
|
5264
|
+
includeDeleted?: undefined;
|
|
5092
5265
|
csvText?: undefined;
|
|
5093
5266
|
rawText?: undefined;
|
|
5094
5267
|
name?: undefined;
|
|
@@ -5096,7 +5269,6 @@ export declare const allTools: ({
|
|
|
5096
5269
|
exclude?: undefined;
|
|
5097
5270
|
seedCompanies?: undefined;
|
|
5098
5271
|
seedDomains?: undefined;
|
|
5099
|
-
limit?: undefined;
|
|
5100
5272
|
sort?: undefined;
|
|
5101
5273
|
previewOnly?: undefined;
|
|
5102
5274
|
companySearchToken?: undefined;
|
|
@@ -5173,6 +5345,11 @@ export declare const allTools: ({
|
|
|
5173
5345
|
leadListId?: undefined;
|
|
5174
5346
|
leadListName?: undefined;
|
|
5175
5347
|
linkedInColumn?: undefined;
|
|
5348
|
+
limit?: undefined;
|
|
5349
|
+
search?: undefined;
|
|
5350
|
+
listName?: undefined;
|
|
5351
|
+
sourceType?: undefined;
|
|
5352
|
+
includeDeleted?: undefined;
|
|
5176
5353
|
csvText?: undefined;
|
|
5177
5354
|
rawText?: undefined;
|
|
5178
5355
|
name?: undefined;
|
|
@@ -5180,7 +5357,6 @@ export declare const allTools: ({
|
|
|
5180
5357
|
exclude?: undefined;
|
|
5181
5358
|
seedCompanies?: undefined;
|
|
5182
5359
|
seedDomains?: undefined;
|
|
5183
|
-
limit?: undefined;
|
|
5184
5360
|
sort?: undefined;
|
|
5185
5361
|
previewOnly?: undefined;
|
|
5186
5362
|
companySearchToken?: undefined;
|
|
@@ -5197,6 +5373,7 @@ export declare const allTools: ({
|
|
|
5197
5373
|
mode?: undefined;
|
|
5198
5374
|
targetEngagerCount?: undefined;
|
|
5199
5375
|
maxPostsToScrape?: undefined;
|
|
5376
|
+
allowInvalidSignalPosts?: undefined;
|
|
5200
5377
|
campaignName?: undefined;
|
|
5201
5378
|
keepInSync?: undefined;
|
|
5202
5379
|
jobId?: undefined;
|
|
@@ -5293,6 +5470,11 @@ export declare const allTools: ({
|
|
|
5293
5470
|
leadListId?: undefined;
|
|
5294
5471
|
leadListName?: undefined;
|
|
5295
5472
|
linkedInColumn?: undefined;
|
|
5473
|
+
limit?: undefined;
|
|
5474
|
+
search?: undefined;
|
|
5475
|
+
listName?: undefined;
|
|
5476
|
+
sourceType?: undefined;
|
|
5477
|
+
includeDeleted?: undefined;
|
|
5296
5478
|
csvText?: undefined;
|
|
5297
5479
|
rawText?: undefined;
|
|
5298
5480
|
name?: undefined;
|
|
@@ -5300,7 +5482,6 @@ export declare const allTools: ({
|
|
|
5300
5482
|
exclude?: undefined;
|
|
5301
5483
|
seedCompanies?: undefined;
|
|
5302
5484
|
seedDomains?: undefined;
|
|
5303
|
-
limit?: undefined;
|
|
5304
5485
|
sort?: undefined;
|
|
5305
5486
|
previewOnly?: undefined;
|
|
5306
5487
|
companySearchToken?: undefined;
|
|
@@ -5315,6 +5496,7 @@ export declare const allTools: ({
|
|
|
5315
5496
|
mode?: undefined;
|
|
5316
5497
|
targetEngagerCount?: undefined;
|
|
5317
5498
|
maxPostsToScrape?: undefined;
|
|
5499
|
+
allowInvalidSignalPosts?: undefined;
|
|
5318
5500
|
tableId?: undefined;
|
|
5319
5501
|
selections?: undefined;
|
|
5320
5502
|
selectionMode?: undefined;
|
|
@@ -5418,6 +5600,11 @@ export declare const allTools: ({
|
|
|
5418
5600
|
leadListId?: undefined;
|
|
5419
5601
|
leadListName?: undefined;
|
|
5420
5602
|
linkedInColumn?: undefined;
|
|
5603
|
+
limit?: undefined;
|
|
5604
|
+
search?: undefined;
|
|
5605
|
+
listName?: undefined;
|
|
5606
|
+
sourceType?: undefined;
|
|
5607
|
+
includeDeleted?: undefined;
|
|
5421
5608
|
csvText?: undefined;
|
|
5422
5609
|
rawText?: undefined;
|
|
5423
5610
|
name?: undefined;
|
|
@@ -5425,7 +5612,6 @@ export declare const allTools: ({
|
|
|
5425
5612
|
exclude?: undefined;
|
|
5426
5613
|
seedCompanies?: undefined;
|
|
5427
5614
|
seedDomains?: undefined;
|
|
5428
|
-
limit?: undefined;
|
|
5429
5615
|
sort?: undefined;
|
|
5430
5616
|
previewOnly?: undefined;
|
|
5431
5617
|
companySearchToken?: undefined;
|
|
@@ -5439,6 +5625,7 @@ export declare const allTools: ({
|
|
|
5439
5625
|
sourceLeadListId?: undefined;
|
|
5440
5626
|
targetLeadCount?: undefined;
|
|
5441
5627
|
mode?: undefined;
|
|
5628
|
+
allowInvalidSignalPosts?: undefined;
|
|
5442
5629
|
tableId?: undefined;
|
|
5443
5630
|
campaignName?: undefined;
|
|
5444
5631
|
keepInSync?: undefined;
|
|
@@ -5507,6 +5694,11 @@ export declare const allTools: ({
|
|
|
5507
5694
|
leadListId?: undefined;
|
|
5508
5695
|
leadListName?: undefined;
|
|
5509
5696
|
linkedInColumn?: undefined;
|
|
5697
|
+
limit?: undefined;
|
|
5698
|
+
search?: undefined;
|
|
5699
|
+
listName?: undefined;
|
|
5700
|
+
sourceType?: undefined;
|
|
5701
|
+
includeDeleted?: undefined;
|
|
5510
5702
|
csvText?: undefined;
|
|
5511
5703
|
rawText?: undefined;
|
|
5512
5704
|
name?: undefined;
|
|
@@ -5514,7 +5706,6 @@ export declare const allTools: ({
|
|
|
5514
5706
|
exclude?: undefined;
|
|
5515
5707
|
seedCompanies?: undefined;
|
|
5516
5708
|
seedDomains?: undefined;
|
|
5517
|
-
limit?: undefined;
|
|
5518
5709
|
sort?: undefined;
|
|
5519
5710
|
previewOnly?: undefined;
|
|
5520
5711
|
companySearchToken?: undefined;
|
|
@@ -5530,6 +5721,7 @@ export declare const allTools: ({
|
|
|
5530
5721
|
mode?: undefined;
|
|
5531
5722
|
targetEngagerCount?: undefined;
|
|
5532
5723
|
maxPostsToScrape?: undefined;
|
|
5724
|
+
allowInvalidSignalPosts?: undefined;
|
|
5533
5725
|
tableId?: undefined;
|
|
5534
5726
|
campaignName?: undefined;
|
|
5535
5727
|
keepInSync?: undefined;
|
package/package.json
CHANGED
|
@@ -58,6 +58,7 @@ allowed-tools:
|
|
|
58
58
|
- mcp__sellable__get_rows
|
|
59
59
|
- mcp__sellable__get_rows_minimal
|
|
60
60
|
- mcp__sellable__get_table_rows
|
|
61
|
+
- mcp__sellable__list_dnc_entries
|
|
61
62
|
- mcp__sellable__load_csv_dnc_entries
|
|
62
63
|
- mcp__sellable__load_csv_linkedin_leads
|
|
63
64
|
- mcp__sellable__load_csv_domains
|
|
@@ -101,6 +102,11 @@ are for known-account targeting only, not DNC. Campaign creation already
|
|
|
101
102
|
includes a `DNC Check` column that checks domain and LinkedIn profile before
|
|
102
103
|
message generation.
|
|
103
104
|
|
|
105
|
+
If the user asks to show/check the current DNC list, count, list names, or first
|
|
106
|
+
page before importing, call `list_dnc_entries`. Confirm the active workspace
|
|
107
|
+
name and ID in the response before any write. This is Sellable's workspace DNC
|
|
108
|
+
list used by DNC Check.
|
|
109
|
+
|
|
104
110
|
## Opening Turn Contract
|
|
105
111
|
|
|
106
112
|
On the first visible response after this skill is invoked, do not narrate
|
|
@@ -219,6 +219,8 @@ belong in the recommendation as DNC/suppression instructions outside the rubric
|
|
|
219
219
|
DNC imports/suppression lists are handled through `load_csv_dnc_entries` outside
|
|
220
220
|
`leadScoringRubrics`. The import previews the exact Sellable workspace name and
|
|
221
221
|
ID, then writes to Sellable's workspace-level DNC list only after confirmation.
|
|
222
|
+
If the user asks to show the current DNC count, list names, or first page before
|
|
223
|
+
import, call `list_dnc_entries` and report the active workspace name and ID.
|
|
222
224
|
Campaign creation already includes `DNC Check`, which checks domain/profile
|
|
223
225
|
before message generation. Do not describe provider workarounds, provider
|
|
224
226
|
search-time limitations, or Prospeo domain filters as the DNC mechanism.
|
|
@@ -50,6 +50,8 @@ Supplied-source preview:
|
|
|
50
50
|
preview. Preview the exact Sellable workspace name and ID and confirm before
|
|
51
51
|
writing. This updates Sellable's workspace-level DNC list; it is not a lead
|
|
52
52
|
source, Prospeo domain filter, or provider workaround.
|
|
53
|
+
If the user asks for the existing DNC count, list names, or first page first,
|
|
54
|
+
call `list_dnc_entries` and report the active workspace name and ID.
|
|
53
55
|
- `supplied-linkedin-profiles` uses `load_csv_linkedin_leads` before the
|
|
54
56
|
15-lead import batch only as preview/source attachment. Pre-import calls
|
|
55
57
|
must omit provider-import parameters. Use `campaignOfferId` only to attach the
|
|
@@ -61,7 +61,9 @@ Supported branches:
|
|
|
61
61
|
Sellable workspace name and ID, and confirmation writes only to that
|
|
62
62
|
workspace's Sellable DNC list. This is not a lead source and does not create a
|
|
63
63
|
`domainFilterId`; campaign rows are protected later by the existing
|
|
64
|
-
`DNC Check` column before message generation.
|
|
64
|
+
`DNC Check` column before message generation. If the user asks for the
|
|
65
|
+
current DNC count, list names, or first page before import, call
|
|
66
|
+
`list_dnc_entries` first.
|
|
65
67
|
- **Supplied LinkedIn profile CSV** — confirm `load_csv_linkedin_leads` only
|
|
66
68
|
after the user approves that supplied-list source. Batch/materialize the
|
|
67
69
|
uploaded CSV into a Sellable lead-list table. Persist the returned
|