@breaknorm_hu/mcp-server 1.0.0 → 1.0.1
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/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -75,7 +75,7 @@ var tools = [
|
|
|
75
75
|
employee_max: z.number().int().optional().describe("Max company employees"),
|
|
76
76
|
revenue_min: z.number().optional().describe("Min annual revenue HUF"),
|
|
77
77
|
revenue_max: z.number().optional().describe("Max annual revenue HUF"),
|
|
78
|
-
has_email: z.enum(["yes", "maybe", "no"]).optional().describe("
|
|
78
|
+
has_email: z.enum(["yes", "maybe", "no"]).optional().describe("DO NOT use this by default! It excludes contacts whose email hasn't been looked up yet. Only use if the user explicitly asks for 'only contacts with known email'."),
|
|
79
79
|
has_phone: z.enum(["yes", "maybe", "no"]).optional(),
|
|
80
80
|
includeEstimate: z.boolean().default(true).optional().describe("Include reveal cost estimate in response (default: true)"),
|
|
81
81
|
revealType: z.enum(["email", "phone", "all"]).default("email").optional().describe("For estimate: what to reveal"),
|
|
@@ -380,7 +380,8 @@ RULES:
|
|
|
380
380
|
- find_leads handles NAICS generation internally \u2014 don't call suggest_industry_codes separately
|
|
381
381
|
- Always includeEstimate: true so you can show the cost to the user
|
|
382
382
|
- Before reveal, ALWAYS show the cost and ask for user approval
|
|
383
|
-
- Credit costs: email=1, phone=10, both=11 per contact
|
|
383
|
+
- Credit costs: email=1, phone=10, both=11 per contact
|
|
384
|
+
- DO NOT use has_email filter by default! Many contacts have emails that just haven't been looked up yet. The reveal process will find them. Only filter by has_email if the user explicitly asks for it.`;
|
|
384
385
|
async function main() {
|
|
385
386
|
const apiKey = process.env.BREAKNORM_API_KEY;
|
|
386
387
|
if (!apiKey) {
|