@sellable/mcp 0.1.219 → 0.1.221

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.
@@ -6,6 +6,114 @@ Prospeo is a data enrichment API for finding verified emails and company data. U
6
6
 
7
7
  Prospeo supports search + import in the campaign builder flow.
8
8
 
9
+ ## Provider Decision Tree
10
+
11
+ - Known account list or CSV: use `load_csv_domains` or `save_domain_filters`, then `search_prospeo`.
12
+ - Company/account lookalikes: use `search_prospeo_companies`, review the account sample, then use `confirm_prospeo_company_accounts` with the returned `companySearchToken` to create a `domainFilterId`; only then call `search_prospeo` for people at those accounts. Account rows are not people leads yet.
13
+ - Person search with known filters: use `search_prospeo` directly.
14
+ - LinkedIn activity, content-source, or post-engagement intent: stay on Signal Discovery or Sales Nav, not Prospeo.
15
+
16
+ Company/account lookalikes must follow:
17
+
18
+ ```text
19
+ search_prospeo_companies -> confirm_prospeo_company_accounts -> search_prospeo
20
+ ```
21
+
22
+ Example account discovery:
23
+
24
+ ```json
25
+ search_prospeo_companies({
26
+ "seedDomains": ["tryredrover.com"],
27
+ "filters": {
28
+ "company_lookalike": { "company_oids": ["cmp_red_rover"], "minimum_tier": "T1" },
29
+ "company_attributes": {
30
+ "uses_ai": true,
31
+ "has_api": true,
32
+ "has_chrome_extension": true,
33
+ "pricing": true
34
+ },
35
+ "company_news": {
36
+ "categories": ["Funding & Investment"],
37
+ "timeframe_days": 90
38
+ },
39
+ "company_awards": { "include": ["G2"], "match_mode": "CONTAINS" },
40
+ "company_website_search": {
41
+ "include_keywords": ["pricing"],
42
+ "url_contains": ["/docs", "/developers"],
43
+ "has_developer_docs_page": true,
44
+ "has_security_page": true
45
+ },
46
+ "company_products_services": {
47
+ "products_include": ["AI"],
48
+ "service_tags_include": ["automation"]
49
+ },
50
+ "company_integrations": { "include": ["Salesforce"] },
51
+ "company_key_customers": { "include": ["Walmart"] },
52
+ "company_google_discovery": { "seo_keywords": ["sales automation"] },
53
+ "company_headcount_by_location": {
54
+ "entries": [{ "country": "United States", "city": "Austin", "min_headcount": 10 }]
55
+ },
56
+ "company_icp": {
57
+ "titles_include": ["Head of RevOps"],
58
+ "company_sizes": ["midmarket"],
59
+ "departments": { "include": ["Sales"], "match_mode": "ANY" }
60
+ },
61
+ "company_website_traffic": { "min_monthly_visits": 50000 },
62
+ "company_key_execs": {
63
+ "event_types": ["VP of Sales Appointed"],
64
+ "timeframe_days": 180
65
+ }
66
+ }
67
+ })
68
+ ```
69
+
70
+ After the user approves account IDs from that response:
71
+
72
+ ```json
73
+ confirm_prospeo_company_accounts({
74
+ "companySearchToken": "token-from-search_prospeo_companies",
75
+ "selectedCompanyIds": ["cmp_influx"],
76
+ "name": "Red Rover lookalike accounts"
77
+ })
78
+ ```
79
+
80
+ Use the returned `domainFilterId` in `search_prospeo` with people filters. Do not reconstruct raw account rows or domains manually as Prospeo-sourced provenance.
81
+
82
+ Unsupported/caveats:
83
+
84
+ - `company_intent` is unsupported by Prospeo public API.
85
+ - Support-channel AI Attribute guesses like phone/email/chat/ticket/social are not exposed.
86
+ - Public API account rows do not expose row-level lookalike tier/score/reason; do not fabricate them.
87
+ - Website traffic and key executive filters are experimental and may fail by account/API policy.
88
+
89
+ Confirmed AI Attribute keys:
90
+
91
+ - `demo`
92
+ - `freetrial`
93
+ - `downloadable`
94
+ - `mobileapps`
95
+ - `onlinereviews`
96
+ - `pricing`
97
+ - `uses_ai`
98
+ - `has_api`
99
+ - `has_chrome_extension`
100
+ - `has_sso`
101
+ - `has_uptime_guarantee`
102
+ - `has_open_source`
103
+ - `has_marketplace`
104
+ - `has_blog`
105
+ - `has_podcast`
106
+ - `has_community_forum`
107
+ - `has_knowledge_base`
108
+ - `has_academy`
109
+ - `has_affiliate_program`
110
+ - `has_esg_reports`
111
+ - `has_physical_offices`
112
+ - `is_venture_backed`
113
+ - `is_publicly_traded`
114
+ - `has_soc2`
115
+ - `data_residency` (`"EU"` only)
116
+
9
117
  ## Domain Filters (ABM / Account-Based Targeting)
10
118
 
11
119
  When a user gives company domains:
@@ -391,7 +499,7 @@ get_prospeo_credits({})
391
499
  | Max bulk size | 10 | 100 |
392
500
  | Duplicate handling | Charged | FREE (same record twice) |
393
501
 
394
- **Recommendation:** Use Prospeo when you have LinkedIn URLs. Use Apollo when you need to search by filters (titles, company size, industry, etc.).
502
+ **Recommendation:** Use Prospeo when you have LinkedIn URLs, verified-contact searches, hiring-led company filters, domain/account lists, or account lookalikes. Use Sales Nav when LinkedIn activity/profile filters are the deciding signal.
395
503
 
396
504
  ## Credit Management
397
505
 
@@ -1,9 +0,0 @@
1
- {
2
- "parallelMode": "wide",
3
- "agentCount": 6,
4
- "maxToolCallsPerAgent": 2,
5
- "senderMaxAgents": 2,
6
- "senderMaxToolCallsPerAgent": 3,
7
- "progressMode": true,
8
- "debugMode": true
9
- }