@sellable/mcp 0.1.223 → 0.1.224

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.
@@ -1246,12 +1246,14 @@ export declare const leadToolDefinitions: ({
1246
1246
  type: string;
1247
1247
  items: {
1248
1248
  type: string;
1249
+ minLength: number;
1249
1250
  };
1250
1251
  };
1251
1252
  exclude: {
1252
1253
  type: string;
1253
1254
  items: {
1254
1255
  type: string;
1256
+ minLength: number;
1255
1257
  };
1256
1258
  };
1257
1259
  include_all: {
@@ -2386,12 +2388,14 @@ export declare const leadToolDefinitions: ({
2386
2388
  type: string;
2387
2389
  items: {
2388
2390
  type: string;
2391
+ minLength: number;
2389
2392
  };
2390
2393
  };
2391
2394
  exclude: {
2392
2395
  type: string;
2393
2396
  items: {
2394
2397
  type: string;
2398
+ minLength: number;
2395
2399
  };
2396
2400
  };
2397
2401
  include_all: {
@@ -177,10 +177,10 @@ const prospeoFundingFilterSchema = {
177
177
  };
178
178
  const prospeoCompanyKeywordsSchema = {
179
179
  type: "object",
180
- description: "Company keyword search",
180
+ description: 'Company keyword search. Prospeo requires keyword values to be at least 3 characters; use "artificial intelligence" instead of "AI".',
181
181
  properties: {
182
- include: { type: "array", items: { type: "string" } },
183
- exclude: { type: "array", items: { type: "string" } },
182
+ include: { type: "array", items: { type: "string", minLength: 3 } },
183
+ exclude: { type: "array", items: { type: "string", minLength: 3 } },
184
184
  include_all: { type: "boolean" },
185
185
  include_company_description: { type: "boolean" },
186
186
  include_company_description_seo: { type: "boolean" },
@@ -2585,12 +2585,14 @@ export declare const allTools: ({
2585
2585
  type: string;
2586
2586
  items: {
2587
2587
  type: string;
2588
+ minLength: number;
2588
2589
  };
2589
2590
  };
2590
2591
  exclude: {
2591
2592
  type: string;
2592
2593
  items: {
2593
2594
  type: string;
2595
+ minLength: number;
2594
2596
  };
2595
2597
  };
2596
2598
  include_all: {
@@ -3725,12 +3727,14 @@ export declare const allTools: ({
3725
3727
  type: string;
3726
3728
  items: {
3727
3729
  type: string;
3730
+ minLength: number;
3728
3731
  };
3729
3732
  };
3730
3733
  exclude: {
3731
3734
  type: string;
3732
3735
  items: {
3733
3736
  type: string;
3737
+ minLength: number;
3734
3738
  };
3735
3739
  };
3736
3740
  include_all: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.223",
3
+ "version": "0.1.224",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -232,9 +232,12 @@ the MCP backend resolves real Prospeo company IDs. Do not invent company_oids.
232
232
  For company ICP geography, `geographic_scope` only accepts `single_country` or
233
233
  `multi_country`; put North America style regions in `geographic_markets` as
234
234
  specific markets such as United States and Canada. Product is not a
235
- company_icp.departments value; use `titles_include` for product roles. Do not
236
- use `company_intent`, and do not invent unsupported support-channel filters or
237
- AI Attribute guesses like phone/email/chat/ticket/social.
235
+ company_icp.departments value; use `titles_include` for product roles.
236
+ `company_keywords.include/exclude` values must be at least 3 characters; use
237
+ `artificial intelligence` instead of `AI`, or use confirmed attributes such as
238
+ `uses_ai` when that is the actual signal. Do not use `company_intent`, and do
239
+ not invent unsupported support-channel filters or AI Attribute guesses like
240
+ phone/email/chat/ticket/social.
238
241
 
239
242
  After scouting, ask for a second approval on Start Import. For
240
243
  LinkedIn engagement (`signal-discovery` internally), name how many
@@ -411,6 +411,9 @@ Use first for broad persona expansion, ABM/domain targeting, hiring-led targetin
411
411
  product roles. Allowed company ICP departments include Consumers, Customer
412
412
  Success, Data, Design, Engineering, Finance, HR, IT, Legal, Marketing,
413
413
  Operations, Procurement, SMB Owners, Sales, and Security.
414
+ - `company_keywords.include/exclude` values must be at least 3 characters; use
415
+ `artificial intelligence` instead of `AI`, or use confirmed attributes such
416
+ as `uses_ai` when that is the actual signal.
414
417
  - Do not use `company_intent`. Do not invent unsupported support-channel filters
415
418
  or AI Attribute guesses like phone/email/chat/ticket/social.
416
419
  - Company/account search returns an account sample only; account rows are not people leads yet. Ask the user to approve the account sample.
@@ -237,6 +237,7 @@ Preference rules:
237
237
  - In security, AppSec, SOC, RevOps, Demand Gen, and similar function-specific lanes, do not rely on bare `Head` / `Director` / `VP` widening by itself. Pair seniority with explicit function keywords in `person_job_title` and verify the sample for off-function titles like `Head of Social Media`.
238
238
  - Prefer `company_headcount_range` for most sizing; use `company_headcount_custom` for precise numeric bounds.
239
239
  - Prefer `company_industry` before `company_keywords`; use keywords for refinement, not first-pass targeting.
240
+ - `company_keywords.include/exclude` values must be at least 3 characters; use `artificial intelligence` instead of `AI`, or use confirmed attributes such as `uses_ai` when that is the real signal.
240
241
 
241
242
  ### Person Filters
242
243