@sellable/mcp 0.1.227 → 0.1.228

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.
@@ -2404,8 +2404,10 @@ function removeUndefinedValues(input) {
2404
2404
  return Object.fromEntries(Object.entries(input).filter(([, value]) => value !== undefined));
2405
2405
  }
2406
2406
  function normalizeProspeoCompanySearchInputForMcp(input) {
2407
- const seedCompanies = normalizeMcpSeeds(input.seedCompanies, "company");
2408
2407
  const seedDomains = normalizeMcpSeeds(input.seedDomains, "domain");
2408
+ const seedCompanies = seedDomains.length > 0
2409
+ ? []
2410
+ : normalizeMcpSeeds(input.seedCompanies, "company");
2409
2411
  const filters = input?.filters && typeof input.filters === "object"
2410
2412
  ? clonePlainObject(input.filters)
2411
2413
  : {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.227",
3
+ "version": "0.1.228",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -257,7 +257,8 @@ company/domain plus `company_lookalike.minimum_tier` and simple confirmed
257
257
  attributes, headcount, or industry. Do not add `company_website_search`,
258
258
  `company_keywords`, or `company_icp` until the account sample proves the seed
259
259
  works. Do not send placeholder seed names like `another approved best-customer seed`,
260
- and only use concrete companies or domains you actually resolved. Do not send `company_website_search.exclude_keywords` without a positive website include signal.
260
+ and only use concrete companies or domains you actually resolved. Prefer `seedDomains`
261
+ over `seedCompanies`; do not mix both in one seeded lookalike call. Do not send `company_website_search.exclude_keywords` without a positive website include signal.
261
262
  Do not use `AI`, `API`, `GTM`, or `SaaS` as company keyword terms.
262
263
  Do not combine `company_key_customers` with ICP, website-search, keyword,
263
264
  attribute, industry, or headcount filters until the standalone pass proves
@@ -432,7 +432,8 @@ Use first for broad persona expansion, ABM/domain targeting, hiring-led targetin
432
432
  attributes, headcount, or industry. Do not add `company_website_search`,
433
433
  `company_keywords`, or `company_icp` until the account sample proves the seed
434
434
  works. Do not send placeholder seed names like `another approved best-customer seed`,
435
- and only use concrete companies or domains you actually resolved. Do not send `company_website_search.exclude_keywords` without a positive website include signal.
435
+ and only use concrete companies or domains you actually resolved. Prefer `seedDomains`
436
+ over `seedCompanies`; do not mix both in one seeded lookalike call. Do not send `company_website_search.exclude_keywords` without a positive website include signal.
436
437
  - Do not use `company_intent`. Do not invent unsupported support-channel filters
437
438
  or AI Attribute guesses like phone/email/chat/ticket/social.
438
439
  - Company/account search returns an account sample only; account rows are not people leads yet. Ask the user to approve the account sample.
@@ -108,6 +108,7 @@ Avoidable-400 guardrails:
108
108
  - Do not duplicate `company_industry` when `company_icp.industries` already carries the industry.
109
109
  - For seeded company lookalikes, keep the first call simple: seed company/domain + `company_lookalike.minimum_tier` + confirmed attributes, headcount, or industry. Do not add `company_website_search`, `company_keywords`, or `company_icp` until the account sample proves the seed works.
110
110
  - Do not send placeholder seed names such as `another approved best-customer seed`; use only concrete company names or domains you have actually resolved.
111
+ - Prefer seed domains over seed company names. Do not mix `seedDomains` and `seedCompanies` in the same lookalike call; use concrete domains when available.
111
112
  - Do not send `company_website_search.exclude_keywords` without a positive website include signal.
112
113
  - For post-confirm people search, prefer `person_job_title.boolean_search` for long role synonym lists instead of many `person_job_title.include` values plus broad department/seniority filters.
113
114
 
@@ -253,6 +254,7 @@ Preference rules:
253
254
  - Do not use `AI`, `API`, `GTM`, or `SaaS` as company keyword terms; use longer phrases such as `artificial intelligence`, `application programming interface`, `go to market`, or `software as a service`.
254
255
  - Run `company_key_customers` as a standalone first-pass filter. Do not combine `company_key_customers` with ICP, website-search, keyword, attribute, industry, or headcount filters until the standalone pass proves useful.
255
256
  - For seeded lookalikes, avoid first-call `company_website_search`, `company_keywords`, and `company_icp`; use resolved seeds plus lookalike tier and simple attributes/headcount/industry first.
257
+ - Prefer `seedDomains` over `seedCompanies`; do not mix both in one seeded lookalike call.
256
258
 
257
259
  ### Person Filters
258
260