@agifyai/leadify-mcp 8.5.5 → 8.6.2

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.
@@ -0,0 +1,668 @@
1
+ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
+ import { z } from "zod";
3
+ import { type LeadifyClient } from "../client.js";
4
+ export declare const verticalContextContentSchema: z.ZodEffects<z.ZodObject<{
5
+ sector: z.ZodOptional<z.ZodString>;
6
+ sectorPositioning: z.ZodOptional<z.ZodString>;
7
+ commercialPitch: z.ZodOptional<z.ZodString>;
8
+ idealCustomer: z.ZodOptional<z.ZodObject<{
9
+ summary: z.ZodOptional<z.ZodString>;
10
+ industries: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11
+ companySizes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12
+ geographies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13
+ characteristics: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14
+ }, "strict", z.ZodTypeAny, {
15
+ summary?: string | undefined;
16
+ geographies?: string[] | undefined;
17
+ industries?: string[] | undefined;
18
+ companySizes?: string[] | undefined;
19
+ characteristics?: string[] | undefined;
20
+ }, {
21
+ summary?: string | undefined;
22
+ geographies?: string[] | undefined;
23
+ industries?: string[] | undefined;
24
+ companySizes?: string[] | undefined;
25
+ characteristics?: string[] | undefined;
26
+ }>>;
27
+ marketMetrics: z.ZodOptional<z.ZodArray<z.ZodObject<{
28
+ id: z.ZodString;
29
+ label: z.ZodString;
30
+ value: z.ZodString;
31
+ explanation: z.ZodOptional<z.ZodString>;
32
+ }, "strict", z.ZodTypeAny, {
33
+ id: string;
34
+ value: string;
35
+ label: string;
36
+ explanation?: string | undefined;
37
+ }, {
38
+ id: string;
39
+ value: string;
40
+ label: string;
41
+ explanation?: string | undefined;
42
+ }>, "many">>;
43
+ customerCaseIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
44
+ useCases: z.ZodOptional<z.ZodArray<z.ZodObject<{
45
+ id: z.ZodString;
46
+ title: z.ZodString;
47
+ description: z.ZodOptional<z.ZodString>;
48
+ customerCaseIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
49
+ }, "strict", z.ZodTypeAny, {
50
+ id: string;
51
+ title: string;
52
+ description?: string | undefined;
53
+ customerCaseIds?: string[] | undefined;
54
+ }, {
55
+ id: string;
56
+ title: string;
57
+ description?: string | undefined;
58
+ customerCaseIds?: string[] | undefined;
59
+ }>, "many">>;
60
+ painPoints: z.ZodOptional<z.ZodArray<z.ZodObject<{
61
+ id: z.ZodString;
62
+ title: z.ZodString;
63
+ description: z.ZodOptional<z.ZodString>;
64
+ useCaseIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
65
+ customerCaseIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
66
+ }, "strict", z.ZodTypeAny, {
67
+ id: string;
68
+ title: string;
69
+ description?: string | undefined;
70
+ customerCaseIds?: string[] | undefined;
71
+ useCaseIds?: string[] | undefined;
72
+ }, {
73
+ id: string;
74
+ title: string;
75
+ description?: string | undefined;
76
+ customerCaseIds?: string[] | undefined;
77
+ useCaseIds?: string[] | undefined;
78
+ }>, "many">>;
79
+ qualificationSignals: z.ZodOptional<z.ZodArray<z.ZodObject<{
80
+ id: z.ZodString;
81
+ title: z.ZodString;
82
+ example: z.ZodOptional<z.ZodString>;
83
+ meaning: z.ZodOptional<z.ZodString>;
84
+ }, "strict", z.ZodTypeAny, {
85
+ id: string;
86
+ title: string;
87
+ example?: string | undefined;
88
+ meaning?: string | undefined;
89
+ }, {
90
+ id: string;
91
+ title: string;
92
+ example?: string | undefined;
93
+ meaning?: string | undefined;
94
+ }>, "many">>;
95
+ competitiveAdvantages: z.ZodOptional<z.ZodArray<z.ZodObject<{
96
+ id: z.ZodString;
97
+ title: z.ZodString;
98
+ description: z.ZodOptional<z.ZodString>;
99
+ }, "strict", z.ZodTypeAny, {
100
+ id: string;
101
+ title: string;
102
+ description?: string | undefined;
103
+ }, {
104
+ id: string;
105
+ title: string;
106
+ description?: string | undefined;
107
+ }>, "many">>;
108
+ competitors: z.ZodOptional<z.ZodArray<z.ZodObject<{
109
+ id: z.ZodString;
110
+ title: z.ZodString;
111
+ description: z.ZodOptional<z.ZodString>;
112
+ }, "strict", z.ZodTypeAny, {
113
+ id: string;
114
+ title: string;
115
+ description?: string | undefined;
116
+ }, {
117
+ id: string;
118
+ title: string;
119
+ description?: string | undefined;
120
+ }>, "many">>;
121
+ objections: z.ZodOptional<z.ZodArray<z.ZodObject<{
122
+ id: z.ZodString;
123
+ objection: z.ZodString;
124
+ response: z.ZodOptional<z.ZodString>;
125
+ }, "strict", z.ZodTypeAny, {
126
+ id: string;
127
+ objection: string;
128
+ response?: string | undefined;
129
+ }, {
130
+ id: string;
131
+ objection: string;
132
+ response?: string | undefined;
133
+ }>, "many">>;
134
+ allowedVocabulary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
135
+ prohibitedVocabulary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
136
+ legalConstraints: z.ZodOptional<z.ZodArray<z.ZodObject<{
137
+ id: z.ZodString;
138
+ title: z.ZodString;
139
+ description: z.ZodOptional<z.ZodString>;
140
+ }, "strict", z.ZodTypeAny, {
141
+ id: string;
142
+ title: string;
143
+ description?: string | undefined;
144
+ }, {
145
+ id: string;
146
+ title: string;
147
+ description?: string | undefined;
148
+ }>, "many">>;
149
+ regulatoryInformation: z.ZodOptional<z.ZodString>;
150
+ commercialExperience: z.ZodOptional<z.ZodArray<z.ZodObject<{
151
+ id: z.ZodString;
152
+ observation: z.ZodString;
153
+ implication: z.ZodOptional<z.ZodString>;
154
+ }, "strict", z.ZodTypeAny, {
155
+ id: string;
156
+ observation: string;
157
+ implication?: string | undefined;
158
+ }, {
159
+ id: string;
160
+ observation: string;
161
+ implication?: string | undefined;
162
+ }>, "many">>;
163
+ }, "strict", z.ZodTypeAny, {
164
+ sector?: string | undefined;
165
+ painPoints?: {
166
+ id: string;
167
+ title: string;
168
+ description?: string | undefined;
169
+ customerCaseIds?: string[] | undefined;
170
+ useCaseIds?: string[] | undefined;
171
+ }[] | undefined;
172
+ allowedVocabulary?: string[] | undefined;
173
+ prohibitedVocabulary?: string[] | undefined;
174
+ legalConstraints?: {
175
+ id: string;
176
+ title: string;
177
+ description?: string | undefined;
178
+ }[] | undefined;
179
+ customerCaseIds?: string[] | undefined;
180
+ sectorPositioning?: string | undefined;
181
+ commercialPitch?: string | undefined;
182
+ idealCustomer?: {
183
+ summary?: string | undefined;
184
+ geographies?: string[] | undefined;
185
+ industries?: string[] | undefined;
186
+ companySizes?: string[] | undefined;
187
+ characteristics?: string[] | undefined;
188
+ } | undefined;
189
+ marketMetrics?: {
190
+ id: string;
191
+ value: string;
192
+ label: string;
193
+ explanation?: string | undefined;
194
+ }[] | undefined;
195
+ useCases?: {
196
+ id: string;
197
+ title: string;
198
+ description?: string | undefined;
199
+ customerCaseIds?: string[] | undefined;
200
+ }[] | undefined;
201
+ qualificationSignals?: {
202
+ id: string;
203
+ title: string;
204
+ example?: string | undefined;
205
+ meaning?: string | undefined;
206
+ }[] | undefined;
207
+ competitiveAdvantages?: {
208
+ id: string;
209
+ title: string;
210
+ description?: string | undefined;
211
+ }[] | undefined;
212
+ competitors?: {
213
+ id: string;
214
+ title: string;
215
+ description?: string | undefined;
216
+ }[] | undefined;
217
+ objections?: {
218
+ id: string;
219
+ objection: string;
220
+ response?: string | undefined;
221
+ }[] | undefined;
222
+ regulatoryInformation?: string | undefined;
223
+ commercialExperience?: {
224
+ id: string;
225
+ observation: string;
226
+ implication?: string | undefined;
227
+ }[] | undefined;
228
+ }, {
229
+ sector?: string | undefined;
230
+ painPoints?: {
231
+ id: string;
232
+ title: string;
233
+ description?: string | undefined;
234
+ customerCaseIds?: string[] | undefined;
235
+ useCaseIds?: string[] | undefined;
236
+ }[] | undefined;
237
+ allowedVocabulary?: string[] | undefined;
238
+ prohibitedVocabulary?: string[] | undefined;
239
+ legalConstraints?: {
240
+ id: string;
241
+ title: string;
242
+ description?: string | undefined;
243
+ }[] | undefined;
244
+ customerCaseIds?: string[] | undefined;
245
+ sectorPositioning?: string | undefined;
246
+ commercialPitch?: string | undefined;
247
+ idealCustomer?: {
248
+ summary?: string | undefined;
249
+ geographies?: string[] | undefined;
250
+ industries?: string[] | undefined;
251
+ companySizes?: string[] | undefined;
252
+ characteristics?: string[] | undefined;
253
+ } | undefined;
254
+ marketMetrics?: {
255
+ id: string;
256
+ value: string;
257
+ label: string;
258
+ explanation?: string | undefined;
259
+ }[] | undefined;
260
+ useCases?: {
261
+ id: string;
262
+ title: string;
263
+ description?: string | undefined;
264
+ customerCaseIds?: string[] | undefined;
265
+ }[] | undefined;
266
+ qualificationSignals?: {
267
+ id: string;
268
+ title: string;
269
+ example?: string | undefined;
270
+ meaning?: string | undefined;
271
+ }[] | undefined;
272
+ competitiveAdvantages?: {
273
+ id: string;
274
+ title: string;
275
+ description?: string | undefined;
276
+ }[] | undefined;
277
+ competitors?: {
278
+ id: string;
279
+ title: string;
280
+ description?: string | undefined;
281
+ }[] | undefined;
282
+ objections?: {
283
+ id: string;
284
+ objection: string;
285
+ response?: string | undefined;
286
+ }[] | undefined;
287
+ regulatoryInformation?: string | undefined;
288
+ commercialExperience?: {
289
+ id: string;
290
+ observation: string;
291
+ implication?: string | undefined;
292
+ }[] | undefined;
293
+ }>, {
294
+ sector?: string | undefined;
295
+ painPoints?: {
296
+ id: string;
297
+ title: string;
298
+ description?: string | undefined;
299
+ customerCaseIds?: string[] | undefined;
300
+ useCaseIds?: string[] | undefined;
301
+ }[] | undefined;
302
+ allowedVocabulary?: string[] | undefined;
303
+ prohibitedVocabulary?: string[] | undefined;
304
+ legalConstraints?: {
305
+ id: string;
306
+ title: string;
307
+ description?: string | undefined;
308
+ }[] | undefined;
309
+ customerCaseIds?: string[] | undefined;
310
+ sectorPositioning?: string | undefined;
311
+ commercialPitch?: string | undefined;
312
+ idealCustomer?: {
313
+ summary?: string | undefined;
314
+ geographies?: string[] | undefined;
315
+ industries?: string[] | undefined;
316
+ companySizes?: string[] | undefined;
317
+ characteristics?: string[] | undefined;
318
+ } | undefined;
319
+ marketMetrics?: {
320
+ id: string;
321
+ value: string;
322
+ label: string;
323
+ explanation?: string | undefined;
324
+ }[] | undefined;
325
+ useCases?: {
326
+ id: string;
327
+ title: string;
328
+ description?: string | undefined;
329
+ customerCaseIds?: string[] | undefined;
330
+ }[] | undefined;
331
+ qualificationSignals?: {
332
+ id: string;
333
+ title: string;
334
+ example?: string | undefined;
335
+ meaning?: string | undefined;
336
+ }[] | undefined;
337
+ competitiveAdvantages?: {
338
+ id: string;
339
+ title: string;
340
+ description?: string | undefined;
341
+ }[] | undefined;
342
+ competitors?: {
343
+ id: string;
344
+ title: string;
345
+ description?: string | undefined;
346
+ }[] | undefined;
347
+ objections?: {
348
+ id: string;
349
+ objection: string;
350
+ response?: string | undefined;
351
+ }[] | undefined;
352
+ regulatoryInformation?: string | undefined;
353
+ commercialExperience?: {
354
+ id: string;
355
+ observation: string;
356
+ implication?: string | undefined;
357
+ }[] | undefined;
358
+ }, {
359
+ sector?: string | undefined;
360
+ painPoints?: {
361
+ id: string;
362
+ title: string;
363
+ description?: string | undefined;
364
+ customerCaseIds?: string[] | undefined;
365
+ useCaseIds?: string[] | undefined;
366
+ }[] | undefined;
367
+ allowedVocabulary?: string[] | undefined;
368
+ prohibitedVocabulary?: string[] | undefined;
369
+ legalConstraints?: {
370
+ id: string;
371
+ title: string;
372
+ description?: string | undefined;
373
+ }[] | undefined;
374
+ customerCaseIds?: string[] | undefined;
375
+ sectorPositioning?: string | undefined;
376
+ commercialPitch?: string | undefined;
377
+ idealCustomer?: {
378
+ summary?: string | undefined;
379
+ geographies?: string[] | undefined;
380
+ industries?: string[] | undefined;
381
+ companySizes?: string[] | undefined;
382
+ characteristics?: string[] | undefined;
383
+ } | undefined;
384
+ marketMetrics?: {
385
+ id: string;
386
+ value: string;
387
+ label: string;
388
+ explanation?: string | undefined;
389
+ }[] | undefined;
390
+ useCases?: {
391
+ id: string;
392
+ title: string;
393
+ description?: string | undefined;
394
+ customerCaseIds?: string[] | undefined;
395
+ }[] | undefined;
396
+ qualificationSignals?: {
397
+ id: string;
398
+ title: string;
399
+ example?: string | undefined;
400
+ meaning?: string | undefined;
401
+ }[] | undefined;
402
+ competitiveAdvantages?: {
403
+ id: string;
404
+ title: string;
405
+ description?: string | undefined;
406
+ }[] | undefined;
407
+ competitors?: {
408
+ id: string;
409
+ title: string;
410
+ description?: string | undefined;
411
+ }[] | undefined;
412
+ objections?: {
413
+ id: string;
414
+ objection: string;
415
+ response?: string | undefined;
416
+ }[] | undefined;
417
+ regulatoryInformation?: string | undefined;
418
+ commercialExperience?: {
419
+ id: string;
420
+ observation: string;
421
+ implication?: string | undefined;
422
+ }[] | undefined;
423
+ }>;
424
+ export declare const offerContextContentSchema: z.ZodEffects<z.ZodObject<{
425
+ description: z.ZodOptional<z.ZodString>;
426
+ promise: z.ZodOptional<z.ZodString>;
427
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
428
+ id: z.ZodString;
429
+ title: z.ZodString;
430
+ description: z.ZodOptional<z.ZodString>;
431
+ }, "strict", z.ZodTypeAny, {
432
+ id: string;
433
+ title: string;
434
+ description?: string | undefined;
435
+ }, {
436
+ id: string;
437
+ title: string;
438
+ description?: string | undefined;
439
+ }>, "many">>;
440
+ activationConditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
441
+ id: z.ZodString;
442
+ title: z.ZodString;
443
+ description: z.ZodOptional<z.ZodString>;
444
+ }, "strict", z.ZodTypeAny, {
445
+ id: string;
446
+ title: string;
447
+ description?: string | undefined;
448
+ }, {
449
+ id: string;
450
+ title: string;
451
+ description?: string | undefined;
452
+ }>, "many">>;
453
+ claims: z.ZodOptional<z.ZodArray<z.ZodObject<{
454
+ id: z.ZodString;
455
+ statement: z.ZodString;
456
+ details: z.ZodOptional<z.ZodString>;
457
+ }, "strict", z.ZodTypeAny, {
458
+ id: string;
459
+ statement: string;
460
+ details?: string | undefined;
461
+ }, {
462
+ id: string;
463
+ statement: string;
464
+ details?: string | undefined;
465
+ }>, "many">>;
466
+ demonstratedResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
467
+ id: z.ZodString;
468
+ label: z.ZodString;
469
+ value: z.ZodString;
470
+ details: z.ZodOptional<z.ZodString>;
471
+ }, "strict", z.ZodTypeAny, {
472
+ id: string;
473
+ value: string;
474
+ label: string;
475
+ details?: string | undefined;
476
+ }, {
477
+ id: string;
478
+ value: string;
479
+ label: string;
480
+ details?: string | undefined;
481
+ }>, "many">>;
482
+ customerCases: z.ZodOptional<z.ZodArray<z.ZodObject<{
483
+ id: z.ZodString;
484
+ companyName: z.ZodString;
485
+ industry: z.ZodOptional<z.ZodString>;
486
+ companyDescription: z.ZodOptional<z.ZodString>;
487
+ resultDetails: z.ZodOptional<z.ZodString>;
488
+ testimonial: z.ZodOptional<z.ZodString>;
489
+ }, "strict", z.ZodTypeAny, {
490
+ id: string;
491
+ companyName: string;
492
+ industry?: string | undefined;
493
+ companyDescription?: string | undefined;
494
+ resultDetails?: string | undefined;
495
+ testimonial?: string | undefined;
496
+ }, {
497
+ id: string;
498
+ companyName: string;
499
+ industry?: string | undefined;
500
+ companyDescription?: string | undefined;
501
+ resultDetails?: string | undefined;
502
+ testimonial?: string | undefined;
503
+ }>, "many">>;
504
+ constraints: z.ZodOptional<z.ZodArray<z.ZodObject<{
505
+ id: z.ZodString;
506
+ title: z.ZodString;
507
+ description: z.ZodOptional<z.ZodString>;
508
+ }, "strict", z.ZodTypeAny, {
509
+ id: string;
510
+ title: string;
511
+ description?: string | undefined;
512
+ }, {
513
+ id: string;
514
+ title: string;
515
+ description?: string | undefined;
516
+ }>, "many">>;
517
+ }, "strict", z.ZodTypeAny, {
518
+ description?: string | undefined;
519
+ promise?: string | undefined;
520
+ capabilities?: {
521
+ id: string;
522
+ title: string;
523
+ description?: string | undefined;
524
+ }[] | undefined;
525
+ activationConditions?: {
526
+ id: string;
527
+ title: string;
528
+ description?: string | undefined;
529
+ }[] | undefined;
530
+ claims?: {
531
+ id: string;
532
+ statement: string;
533
+ details?: string | undefined;
534
+ }[] | undefined;
535
+ demonstratedResults?: {
536
+ id: string;
537
+ value: string;
538
+ label: string;
539
+ details?: string | undefined;
540
+ }[] | undefined;
541
+ customerCases?: {
542
+ id: string;
543
+ companyName: string;
544
+ industry?: string | undefined;
545
+ companyDescription?: string | undefined;
546
+ resultDetails?: string | undefined;
547
+ testimonial?: string | undefined;
548
+ }[] | undefined;
549
+ constraints?: {
550
+ id: string;
551
+ title: string;
552
+ description?: string | undefined;
553
+ }[] | undefined;
554
+ }, {
555
+ description?: string | undefined;
556
+ promise?: string | undefined;
557
+ capabilities?: {
558
+ id: string;
559
+ title: string;
560
+ description?: string | undefined;
561
+ }[] | undefined;
562
+ activationConditions?: {
563
+ id: string;
564
+ title: string;
565
+ description?: string | undefined;
566
+ }[] | undefined;
567
+ claims?: {
568
+ id: string;
569
+ statement: string;
570
+ details?: string | undefined;
571
+ }[] | undefined;
572
+ demonstratedResults?: {
573
+ id: string;
574
+ value: string;
575
+ label: string;
576
+ details?: string | undefined;
577
+ }[] | undefined;
578
+ customerCases?: {
579
+ id: string;
580
+ companyName: string;
581
+ industry?: string | undefined;
582
+ companyDescription?: string | undefined;
583
+ resultDetails?: string | undefined;
584
+ testimonial?: string | undefined;
585
+ }[] | undefined;
586
+ constraints?: {
587
+ id: string;
588
+ title: string;
589
+ description?: string | undefined;
590
+ }[] | undefined;
591
+ }>, {
592
+ description?: string | undefined;
593
+ promise?: string | undefined;
594
+ capabilities?: {
595
+ id: string;
596
+ title: string;
597
+ description?: string | undefined;
598
+ }[] | undefined;
599
+ activationConditions?: {
600
+ id: string;
601
+ title: string;
602
+ description?: string | undefined;
603
+ }[] | undefined;
604
+ claims?: {
605
+ id: string;
606
+ statement: string;
607
+ details?: string | undefined;
608
+ }[] | undefined;
609
+ demonstratedResults?: {
610
+ id: string;
611
+ value: string;
612
+ label: string;
613
+ details?: string | undefined;
614
+ }[] | undefined;
615
+ customerCases?: {
616
+ id: string;
617
+ companyName: string;
618
+ industry?: string | undefined;
619
+ companyDescription?: string | undefined;
620
+ resultDetails?: string | undefined;
621
+ testimonial?: string | undefined;
622
+ }[] | undefined;
623
+ constraints?: {
624
+ id: string;
625
+ title: string;
626
+ description?: string | undefined;
627
+ }[] | undefined;
628
+ }, {
629
+ description?: string | undefined;
630
+ promise?: string | undefined;
631
+ capabilities?: {
632
+ id: string;
633
+ title: string;
634
+ description?: string | undefined;
635
+ }[] | undefined;
636
+ activationConditions?: {
637
+ id: string;
638
+ title: string;
639
+ description?: string | undefined;
640
+ }[] | undefined;
641
+ claims?: {
642
+ id: string;
643
+ statement: string;
644
+ details?: string | undefined;
645
+ }[] | undefined;
646
+ demonstratedResults?: {
647
+ id: string;
648
+ value: string;
649
+ label: string;
650
+ details?: string | undefined;
651
+ }[] | undefined;
652
+ customerCases?: {
653
+ id: string;
654
+ companyName: string;
655
+ industry?: string | undefined;
656
+ companyDescription?: string | undefined;
657
+ resultDetails?: string | undefined;
658
+ testimonial?: string | undefined;
659
+ }[] | undefined;
660
+ constraints?: {
661
+ id: string;
662
+ title: string;
663
+ description?: string | undefined;
664
+ }[] | undefined;
665
+ }>;
666
+ type ContextEntityClient = Pick<LeadifyClient, "get" | "post" | "put" | "patch" | "delete">;
667
+ export declare function registerContextEntityTools(server: McpServer, client?: ContextEntityClient): void;
668
+ export {};