@sellable/mcp 0.1.221 → 0.1.222

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.
@@ -453,7 +453,7 @@ For awards: { "company_awards": { "include": ["G2"], "match_mode": "CONTAINS" }
453
453
  For website traffic: { "company_website_traffic": { "min_monthly_visits": 50000 } }.
454
454
  For products/services, integrations, key customers, and Google discovery use "company_products_services", "company_integrations", "company_key_customers", and "company_google_discovery".
455
455
  For headcount by location: { "company_headcount_by_location": { "entries": [{ "country": "United States", "city": "Austin", "min_headcount": 10 }] } }.
456
- For structured ICP: { "company_icp": { "titles_include": ["Head of RevOps"], "company_sizes": ["midmarket"], "departments": { "include": ["Sales"], "match_mode": "ANY" } } }.
456
+ For structured ICP: { "company_icp": { "titles_include": ["Head of RevOps"], "company_sizes": ["midmarket"], "departments": { "include": ["Sales"], "match_mode": "ANY" } }, "company_headcount_range": ["101-200", "201-500", "501-1000"] }. Pair company_icp.company_sizes with company_headcount_range or rely on MCP normalization that derives the range; inspect the account sample for size drift.
457
457
  company_intent is unsupported; support-channel AI Attribute guesses like phone/email/chat/ticket/social are not exposed. public API rows do not include lookalike tier/score/reason.`;
458
458
  function loadSignalDiscoveryConfig() {
459
459
  if (!existsSync(signalProviderConfigPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.221",
3
+ "version": "0.1.222",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -218,6 +218,18 @@ reconstruct raw account rows or domains manually. Account rows are not people
218
218
  leads yet. The confirmation creates the `domainFilterId` that constrains the
219
219
  follow-on `search_prospeo` people search.
220
220
 
221
+ Prospeo company/account search is useful when the source plan depends on
222
+ website traffic (`company_website_traffic`), confirmed AI Attributes including
223
+ `pricing`, `uses_ai`, `has_api`, `has_chrome_extension`, `has_sso`,
224
+ `has_open_source`, `has_marketplace`, `has_blog`, `has_knowledge_base`,
225
+ `has_soc2`, `data_residency: "EU"`, news, awards, website pages, products,
226
+ integrations, key customers, Google discovery, location headcount, or
227
+ structured ICP. When using `company_icp.company_sizes` for micro/SMB/midmarket
228
+ or enterprise sizing, pair it with `company_headcount_range` or rely on the MCP
229
+ normalization that derives the range; inspect the sample for size drift. Do not
230
+ use `company_intent`, and do not invent unsupported support-channel filters or
231
+ AI Attribute guesses like phone/email/chat/ticket/social.
232
+
221
233
  After scouting, ask for a second approval on Start Import. For
222
234
  LinkedIn engagement (`signal-discovery` internally), name how many
223
235
  recommended posts will be scraped and the target engager/source-candidate
@@ -391,6 +391,18 @@ Use first for broad persona expansion, ABM/domain targeting, hiring-led targetin
391
391
  - For companies like X, our best customers, lookalike accounts, companies that use AI, companies with API/SSO/Chrome extension, or
392
392
  news/award/integration/key-customer account filters, use
393
393
  `search_prospeo_companies` before people search.
394
+ - Use Prospeo company/account search when the ask depends on website traffic
395
+ (`company_website_traffic`), confirmed AI Attributes including `pricing`,
396
+ `uses_ai`, `has_api`, `has_chrome_extension`, `has_sso`, `has_open_source`,
397
+ `has_marketplace`, `has_blog`, `has_knowledge_base`, `has_soc2`,
398
+ `data_residency: "EU"`, website pages, products, integrations, key
399
+ customers, Google discovery, location headcount, or structured ICP.
400
+ - When using `company_icp.company_sizes` for micro/SMB/midmarket or enterprise
401
+ sizing, pair it with `company_headcount_range` or rely on MCP normalization
402
+ that derives the range; inspect the account sample for size drift before
403
+ approving accounts.
404
+ - Do not use `company_intent`. Do not invent unsupported support-channel filters
405
+ or AI Attribute guesses like phone/email/chat/ticket/social.
394
406
  - Company/account search returns an account sample only; account rows are not people leads yet. Ask the user to approve the account sample.
395
407
  - After approval, call `confirm_prospeo_company_accounts` with the
396
408
  `companySearchToken` and selected Prospeo company IDs from
@@ -58,6 +58,7 @@ search_prospeo_companies({
58
58
  "company_sizes": ["midmarket"],
59
59
  "departments": { "include": ["Sales"], "match_mode": "ANY" }
60
60
  },
61
+ "company_headcount_range": ["101-200", "201-500", "501-1000"],
61
62
  "company_website_traffic": { "min_monthly_visits": 50000 },
62
63
  "company_key_execs": {
63
64
  "event_types": ["VP of Sales Appointed"],
@@ -79,6 +80,12 @@ confirm_prospeo_company_accounts({
79
80
 
80
81
  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
 
83
+ For structured ICP sizing, pair `company_icp.company_sizes` with
84
+ `company_headcount_range` when possible. The MCP normalizer derives headcount
85
+ ranges for `micro`, `smb`, `midmarket`, `enterprise`, and `large_enterprise`
86
+ when no explicit headcount range is supplied, but the sample should still be
87
+ checked for size drift before accounts are approved.
88
+
82
89
  Unsupported/caveats:
83
90
 
84
91
  - `company_intent` is unsupported by Prospeo public API.
@@ -86,7 +93,7 @@ Unsupported/caveats:
86
93
  - Public API account rows do not expose row-level lookalike tier/score/reason; do not fabricate them.
87
94
  - Website traffic and key executive filters are experimental and may fail by account/API policy.
88
95
 
89
- Confirmed AI Attribute keys:
96
+ The confirmed AI Attributes keys are:
90
97
 
91
98
  - `demo`
92
99
  - `freetrial`