@heyseo/mcp-server 0.2.1 → 0.3.0

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.
Files changed (72) hide show
  1. package/README.md +119 -22
  2. package/dist/index.js +382 -2
  3. package/dist/index.js.map +1 -1
  4. package/dist/tools/chat.d.ts +44 -0
  5. package/dist/tools/chat.d.ts.map +1 -0
  6. package/dist/tools/chat.js +37 -0
  7. package/dist/tools/chat.js.map +1 -0
  8. package/dist/tools/conversations.d.ts +95 -0
  9. package/dist/tools/conversations.d.ts.map +1 -0
  10. package/dist/tools/conversations.js +110 -0
  11. package/dist/tools/conversations.js.map +1 -0
  12. package/dist/tools/dataforseo.d.ts +49 -0
  13. package/dist/tools/dataforseo.d.ts.map +1 -0
  14. package/dist/tools/dataforseo.js +37 -0
  15. package/dist/tools/dataforseo.js.map +1 -0
  16. package/dist/tools/index.d.ts +1618 -75
  17. package/dist/tools/index.d.ts.map +1 -1
  18. package/dist/tools/index.js +105 -20
  19. package/dist/tools/index.js.map +1 -1
  20. package/dist/tools/indexing.d.ts +134 -0
  21. package/dist/tools/indexing.d.ts.map +1 -1
  22. package/dist/tools/indexing.js +163 -0
  23. package/dist/tools/indexing.js.map +1 -1
  24. package/dist/tools/insights.d.ts +25 -2
  25. package/dist/tools/insights.d.ts.map +1 -1
  26. package/dist/tools/insights.js +27 -0
  27. package/dist/tools/insights.js.map +1 -1
  28. package/dist/tools/knowledge.d.ts +98 -0
  29. package/dist/tools/knowledge.d.ts.map +1 -0
  30. package/dist/tools/knowledge.js +69 -0
  31. package/dist/tools/knowledge.js.map +1 -0
  32. package/dist/tools/memory.d.ts +273 -0
  33. package/dist/tools/memory.d.ts.map +1 -1
  34. package/dist/tools/memory.js +153 -0
  35. package/dist/tools/memory.js.map +1 -1
  36. package/dist/tools/notifications.d.ts +75 -0
  37. package/dist/tools/notifications.d.ts.map +1 -0
  38. package/dist/tools/notifications.js +62 -0
  39. package/dist/tools/notifications.js.map +1 -0
  40. package/dist/tools/onpage.d.ts +36 -2
  41. package/dist/tools/onpage.d.ts.map +1 -1
  42. package/dist/tools/onpage.js +29 -0
  43. package/dist/tools/onpage.js.map +1 -1
  44. package/dist/tools/pagespeed.d.ts +39 -0
  45. package/dist/tools/pagespeed.d.ts.map +1 -1
  46. package/dist/tools/pagespeed.js +29 -0
  47. package/dist/tools/pagespeed.js.map +1 -1
  48. package/dist/tools/reports.d.ts +174 -0
  49. package/dist/tools/reports.d.ts.map +1 -1
  50. package/dist/tools/reports.js +142 -0
  51. package/dist/tools/reports.js.map +1 -1
  52. package/dist/tools/serp.d.ts +85 -2
  53. package/dist/tools/serp.d.ts.map +1 -1
  54. package/dist/tools/serp.js +58 -0
  55. package/dist/tools/serp.js.map +1 -1
  56. package/dist/tools/site.d.ts +47 -0
  57. package/dist/tools/site.d.ts.map +1 -1
  58. package/dist/tools/site.js +88 -1
  59. package/dist/tools/site.js.map +1 -1
  60. package/dist/tools/sitemaps.d.ts +44 -2
  61. package/dist/tools/sitemaps.d.ts.map +1 -1
  62. package/dist/tools/sitemaps.js +56 -0
  63. package/dist/tools/sitemaps.js.map +1 -1
  64. package/dist/tools/tasks.d.ts +56 -2
  65. package/dist/tools/tasks.d.ts.map +1 -1
  66. package/dist/tools/tasks.js +46 -0
  67. package/dist/tools/tasks.js.map +1 -1
  68. package/dist/utils/api-client.d.ts +48 -0
  69. package/dist/utils/api-client.d.ts.map +1 -1
  70. package/dist/utils/api-client.js +274 -0
  71. package/dist/utils/api-client.js.map +1 -1
  72. package/package.json +1 -1
@@ -2,20 +2,25 @@
2
2
  * Tool Registry
3
3
  * Exports all tools for the HeySeo MCP server
4
4
  */
5
- import { siteTools, listSitesSchema, getCurrentSiteSchema, selectSiteSchema, executeListSites, executeSelectSite, executeGetCurrentSite } from './site.js';
5
+ import { siteTools, listSitesSchema, getCurrentSiteSchema, selectSiteSchema, updateSiteSchema, deleteSiteSchema, syncAnalyticsSchema, executeListSites, executeSelectSite, executeGetCurrentSite, executeUpdateSite, executeDeleteSite, executeSyncAnalytics } from './site.js';
6
6
  import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory } from './gsc.js';
7
7
  import { ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources } from './ga4.js';
8
- import { pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAnalyzePageSpeed, executeBulkPageSpeed } from './pagespeed.js';
8
+ import { pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, pagespeedHistorySchema, executeAnalyzePageSpeed, executeBulkPageSpeed, executePagespeedHistory } from './pagespeed.js';
9
9
  import { comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek } from './comparison.js';
10
- import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks } from './tasks.js';
11
- import { reportTools, listReportsSchema, getReportSchema, executeListReports, executeGetReport } from './reports.js';
12
- import { indexingTools, indexingStatusSchema, indexingPagesSchema, submitForIndexingSchema, executeIndexingStatus, executeIndexingPages, executeSubmitForIndexing } from './indexing.js';
13
- import { memoryTools, getMemorySchema, updateStrategySchema, recordActionSchema, addLearningSchema, executeGetMemory, executeUpdateStrategy, executeRecordAction, executeAddLearning } from './memory.js';
14
- import { insightTools, getInsightsSchema, executeGetInsights } from './insights.js';
15
- import { onpageTools, onpageAuditSchema, executeOnpageAudit } from './onpage.js';
16
- import { serpTools, serpSearchSchema, executeSerpSearch } from './serp.js';
17
- import { sitemapTools, listSitemapsSchema, executeListSitemaps } from './sitemaps.js';
18
- export { siteTools, listSitesSchema, getCurrentSiteSchema, selectSiteSchema, executeListSites, executeSelectSite, executeGetCurrentSite, gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory, ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources, pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAnalyzePageSpeed, executeBulkPageSpeed, comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek, taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks, reportTools, listReportsSchema, getReportSchema, executeListReports, executeGetReport, indexingTools, indexingStatusSchema, indexingPagesSchema, submitForIndexingSchema, executeIndexingStatus, executeIndexingPages, executeSubmitForIndexing, memoryTools, getMemorySchema, updateStrategySchema, recordActionSchema, addLearningSchema, executeGetMemory, executeUpdateStrategy, executeRecordAction, executeAddLearning, insightTools, getInsightsSchema, executeGetInsights, onpageTools, onpageAuditSchema, executeOnpageAudit, serpTools, serpSearchSchema, executeSerpSearch, sitemapTools, listSitemapsSchema, executeListSitemaps, };
10
+ import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, moveTaskSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks, executeMoveTask } from './tasks.js';
11
+ import { reportTools, listReportsSchema, getReportSchema, generateReportSchema, deleteReportSchema, reportSettingsSchema, updateReportSettingsSchema, sendTestReportSchema, executeListReports, executeGetReport, executeGenerateReport, executeDeleteReport, executeReportSettings, executeUpdateReportSettings, executeSendTestReport } from './reports.js';
12
+ import { indexingTools, indexingStatusSchema, indexingPagesSchema, submitForIndexingSchema, indexingCheckSchema, indexingHistorySchema, indexingSettingsSchema, updateIndexingSettingsSchema, indexingSubmissionsSchema, removeIndexingPageSchema, executeIndexingStatus, executeIndexingPages, executeSubmitForIndexing, executeIndexingCheck, executeIndexingHistory, executeIndexingSettings, executeUpdateIndexingSettings, executeIndexingSubmissions, executeRemoveIndexingPage } from './indexing.js';
13
+ import { memoryTools, getMemorySchema, updateStrategySchema, recordActionSchema, addLearningSchema, deleteGoalSchema, memorySnapshotsSchema, generateSnapshotSchema, queueActionSchema, updateQueuedActionSchema, executeGetMemory, executeUpdateStrategy, executeRecordAction, executeAddLearning, executeDeleteGoal, executeMemorySnapshots, executeGenerateSnapshot, executeQueueAction, executeUpdateQueuedAction } from './memory.js';
14
+ import { insightTools, getInsightsSchema, generateInsightsSchema, executeGetInsights, executeGenerateInsights } from './insights.js';
15
+ import { onpageTools, onpageAuditSchema, onpageHistorySchema, executeOnpageAudit, executeOnpageHistory } from './onpage.js';
16
+ import { serpTools, serpSearchSchema, serpHistorySchema, serpBatchSchema, executeSerpSearch, executeSerpHistory, executeSerpBatch } from './serp.js';
17
+ import { sitemapTools, listSitemapsSchema, submitSitemapSchema, deleteSitemapSchema, executeListSitemaps, executeSubmitSitemap, executeDeleteSitemap } from './sitemaps.js';
18
+ import { knowledgeTools, getKnowledgeSchema, updateKnowledgeSchema, executeGetKnowledge, executeUpdateKnowledge } from './knowledge.js';
19
+ import { notificationTools, notificationSettingsSchema, updateNotificationSettingsSchema, executeNotificationSettings, executeUpdateNotificationSettings } from './notifications.js';
20
+ import { dataforseoTools, keywordVolumeSchema, executeKeywordVolume } from './dataforseo.js';
21
+ import { chatTools, chatSchema, executeChat } from './chat.js';
22
+ import { conversationTools, listConversationsSchema, getConversationSchema, createConversationSchema, deleteConversationSchema, executeListConversations, executeGetConversation, executeCreateConversation, executeDeleteConversation } from './conversations.js';
23
+ export { siteTools, listSitesSchema, getCurrentSiteSchema, selectSiteSchema, updateSiteSchema, deleteSiteSchema, syncAnalyticsSchema, executeListSites, executeSelectSite, executeGetCurrentSite, executeUpdateSite, executeDeleteSite, executeSyncAnalytics, gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory, ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources, pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, pagespeedHistorySchema, executeAnalyzePageSpeed, executeBulkPageSpeed, executePagespeedHistory, comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek, taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, moveTaskSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks, executeMoveTask, reportTools, listReportsSchema, getReportSchema, generateReportSchema, deleteReportSchema, reportSettingsSchema, updateReportSettingsSchema, sendTestReportSchema, executeListReports, executeGetReport, executeGenerateReport, executeDeleteReport, executeReportSettings, executeUpdateReportSettings, executeSendTestReport, indexingTools, indexingStatusSchema, indexingPagesSchema, submitForIndexingSchema, indexingCheckSchema, indexingHistorySchema, indexingSettingsSchema, updateIndexingSettingsSchema, indexingSubmissionsSchema, removeIndexingPageSchema, executeIndexingStatus, executeIndexingPages, executeSubmitForIndexing, executeIndexingCheck, executeIndexingHistory, executeIndexingSettings, executeUpdateIndexingSettings, executeIndexingSubmissions, executeRemoveIndexingPage, memoryTools, getMemorySchema, updateStrategySchema, recordActionSchema, addLearningSchema, deleteGoalSchema, memorySnapshotsSchema, generateSnapshotSchema, queueActionSchema, updateQueuedActionSchema, executeGetMemory, executeUpdateStrategy, executeRecordAction, executeAddLearning, executeDeleteGoal, executeMemorySnapshots, executeGenerateSnapshot, executeQueueAction, executeUpdateQueuedAction, insightTools, getInsightsSchema, generateInsightsSchema, executeGetInsights, executeGenerateInsights, onpageTools, onpageAuditSchema, onpageHistorySchema, executeOnpageAudit, executeOnpageHistory, serpTools, serpSearchSchema, serpHistorySchema, serpBatchSchema, executeSerpSearch, executeSerpHistory, executeSerpBatch, sitemapTools, listSitemapsSchema, submitSitemapSchema, deleteSitemapSchema, executeListSitemaps, executeSubmitSitemap, executeDeleteSitemap, knowledgeTools, getKnowledgeSchema, updateKnowledgeSchema, executeGetKnowledge, executeUpdateKnowledge, notificationTools, notificationSettingsSchema, updateNotificationSettingsSchema, executeNotificationSettings, executeUpdateNotificationSettings, dataforseoTools, keywordVolumeSchema, executeKeywordVolume, chatTools, chatSchema, executeChat, conversationTools, listConversationsSchema, getConversationSchema, createConversationSchema, deleteConversationSchema, executeListConversations, executeGetConversation, executeCreateConversation, executeDeleteConversation, };
19
24
  /**
20
25
  * All tool definitions for MCP registration
21
26
  */
@@ -58,6 +63,1379 @@ export declare const allTools: ({
58
63
  theme?: "light" | "dark" | undefined;
59
64
  }[] | undefined;
60
65
  title?: string | undefined;
66
+ } | {
67
+ name: string;
68
+ description: string;
69
+ inputSchema: {
70
+ type: string;
71
+ properties: {
72
+ siteId: {
73
+ type: string;
74
+ description: string;
75
+ };
76
+ startDate: {
77
+ type: string;
78
+ pattern: string;
79
+ description: string;
80
+ };
81
+ endDate: {
82
+ type: string;
83
+ pattern: string;
84
+ description: string;
85
+ };
86
+ dimensions: {
87
+ type: string;
88
+ items: {
89
+ type: string;
90
+ enum: string[];
91
+ };
92
+ default: string[];
93
+ description: string;
94
+ };
95
+ rowLimit: {
96
+ type: string;
97
+ minimum: number;
98
+ maximum: number;
99
+ default: number;
100
+ description: string;
101
+ };
102
+ filters: {
103
+ type: string;
104
+ items: {
105
+ type: string;
106
+ properties: {
107
+ dimension: {
108
+ type: string;
109
+ enum: string[];
110
+ };
111
+ operator: {
112
+ type: string;
113
+ enum: string[];
114
+ };
115
+ expression: {
116
+ type: string;
117
+ };
118
+ };
119
+ required: string[];
120
+ };
121
+ description: string;
122
+ };
123
+ limit?: undefined;
124
+ keyword?: undefined;
125
+ days?: undefined;
126
+ };
127
+ required: string[];
128
+ };
129
+ } | {
130
+ name: string;
131
+ description: string;
132
+ inputSchema: {
133
+ type: string;
134
+ properties: {
135
+ siteId: {
136
+ type: string;
137
+ description: string;
138
+ };
139
+ limit: {
140
+ type: string;
141
+ minimum: number;
142
+ maximum: number;
143
+ default: number;
144
+ description: string;
145
+ };
146
+ startDate: {
147
+ type: string;
148
+ pattern: string;
149
+ description: string;
150
+ };
151
+ endDate: {
152
+ type: string;
153
+ pattern: string;
154
+ description: string;
155
+ };
156
+ dimensions?: undefined;
157
+ rowLimit?: undefined;
158
+ filters?: undefined;
159
+ keyword?: undefined;
160
+ days?: undefined;
161
+ };
162
+ required: string[];
163
+ };
164
+ } | {
165
+ name: string;
166
+ description: string;
167
+ inputSchema: {
168
+ type: string;
169
+ properties: {
170
+ siteId: {
171
+ type: string;
172
+ description: string;
173
+ };
174
+ keyword: {
175
+ type: string;
176
+ description: string;
177
+ };
178
+ days: {
179
+ type: string;
180
+ minimum: number;
181
+ maximum: number;
182
+ default: number;
183
+ description: string;
184
+ };
185
+ startDate?: undefined;
186
+ endDate?: undefined;
187
+ dimensions?: undefined;
188
+ rowLimit?: undefined;
189
+ filters?: undefined;
190
+ limit?: undefined;
191
+ };
192
+ required: string[];
193
+ };
194
+ } | {
195
+ name: string;
196
+ description: string;
197
+ inputSchema: {
198
+ type: string;
199
+ properties: {
200
+ siteId: {
201
+ type: string;
202
+ description: string;
203
+ };
204
+ startDate: {
205
+ type: string;
206
+ pattern: string;
207
+ description: string;
208
+ };
209
+ endDate: {
210
+ type: string;
211
+ pattern: string;
212
+ description: string;
213
+ };
214
+ metrics: {
215
+ type: string;
216
+ items: {
217
+ type: string;
218
+ enum: string[];
219
+ };
220
+ default: string[];
221
+ description: string;
222
+ };
223
+ dimensions: {
224
+ type: string;
225
+ items: {
226
+ type: string;
227
+ enum: string[];
228
+ };
229
+ description: string;
230
+ };
231
+ limit: {
232
+ type: string;
233
+ minimum: number;
234
+ maximum: number;
235
+ default: number;
236
+ description: string;
237
+ };
238
+ };
239
+ required: string[];
240
+ };
241
+ } | {
242
+ name: string;
243
+ description: string;
244
+ inputSchema: {
245
+ type: string;
246
+ properties: {
247
+ siteId: {
248
+ type: string;
249
+ description: string;
250
+ };
251
+ limit: {
252
+ type: string;
253
+ minimum: number;
254
+ maximum: number;
255
+ default: number;
256
+ description: string;
257
+ };
258
+ startDate: {
259
+ type: string;
260
+ pattern: string;
261
+ description: string;
262
+ };
263
+ endDate: {
264
+ type: string;
265
+ pattern: string;
266
+ description: string;
267
+ };
268
+ metrics?: undefined;
269
+ dimensions?: undefined;
270
+ };
271
+ required: string[];
272
+ };
273
+ } | {
274
+ name: string;
275
+ description: string;
276
+ inputSchema: {
277
+ type: string;
278
+ properties: {
279
+ siteId: {
280
+ type: string;
281
+ description: string;
282
+ };
283
+ startDate: {
284
+ type: string;
285
+ pattern: string;
286
+ description: string;
287
+ };
288
+ endDate: {
289
+ type: string;
290
+ pattern: string;
291
+ description: string;
292
+ };
293
+ metrics?: undefined;
294
+ dimensions?: undefined;
295
+ limit?: undefined;
296
+ };
297
+ required: string[];
298
+ };
299
+ } | {
300
+ name: string;
301
+ description: string;
302
+ inputSchema: {
303
+ type: string;
304
+ properties: {
305
+ url: {
306
+ type: string;
307
+ format: string;
308
+ description: string;
309
+ };
310
+ strategy: {
311
+ type: string;
312
+ enum: string[];
313
+ default: string;
314
+ description: string;
315
+ };
316
+ urls?: undefined;
317
+ siteId?: undefined;
318
+ limit?: undefined;
319
+ };
320
+ required: string[];
321
+ };
322
+ } | {
323
+ name: string;
324
+ description: string;
325
+ inputSchema: {
326
+ type: string;
327
+ properties: {
328
+ urls: {
329
+ type: string;
330
+ items: {
331
+ type: string;
332
+ format: string;
333
+ };
334
+ minItems: number;
335
+ maxItems: number;
336
+ description: string;
337
+ };
338
+ strategy: {
339
+ type: string;
340
+ enum: string[];
341
+ default: string;
342
+ description: string;
343
+ };
344
+ url?: undefined;
345
+ siteId?: undefined;
346
+ limit?: undefined;
347
+ };
348
+ required: string[];
349
+ };
350
+ } | {
351
+ name: string;
352
+ description: string;
353
+ inputSchema: {
354
+ type: string;
355
+ properties: {
356
+ siteId: {
357
+ type: string;
358
+ description: string;
359
+ };
360
+ period1Start: {
361
+ type: string;
362
+ pattern: string;
363
+ description: string;
364
+ };
365
+ period1End: {
366
+ type: string;
367
+ pattern: string;
368
+ description: string;
369
+ };
370
+ period2Start: {
371
+ type: string;
372
+ pattern: string;
373
+ description: string;
374
+ };
375
+ period2End: {
376
+ type: string;
377
+ pattern: string;
378
+ description: string;
379
+ };
380
+ includeGA4: {
381
+ type: string;
382
+ default: boolean;
383
+ description: string;
384
+ };
385
+ weeksBack?: undefined;
386
+ type?: undefined;
387
+ };
388
+ required: string[];
389
+ };
390
+ } | {
391
+ name: string;
392
+ description: string;
393
+ inputSchema: {
394
+ type: string;
395
+ properties: {
396
+ siteId: {
397
+ type: string;
398
+ description: string;
399
+ };
400
+ weeksBack: {
401
+ type: string;
402
+ minimum: number;
403
+ maximum: number;
404
+ default: number;
405
+ description: string;
406
+ };
407
+ period1Start?: undefined;
408
+ period1End?: undefined;
409
+ period2Start?: undefined;
410
+ period2End?: undefined;
411
+ includeGA4?: undefined;
412
+ type?: undefined;
413
+ };
414
+ required: string[];
415
+ };
416
+ } | {
417
+ name: string;
418
+ description: string;
419
+ inputSchema: {
420
+ type: string;
421
+ properties: {
422
+ siteId: {
423
+ type: string;
424
+ description: string;
425
+ };
426
+ type: {
427
+ type: string;
428
+ enum: string[];
429
+ default: string;
430
+ description: string;
431
+ };
432
+ period1Start?: undefined;
433
+ period1End?: undefined;
434
+ period2Start?: undefined;
435
+ period2End?: undefined;
436
+ includeGA4?: undefined;
437
+ weeksBack?: undefined;
438
+ };
439
+ required: string[];
440
+ };
441
+ } | {
442
+ name: string;
443
+ description: string;
444
+ inputSchema: {
445
+ type: string;
446
+ properties: {
447
+ siteId: {
448
+ type: string;
449
+ description: string;
450
+ };
451
+ title: {
452
+ type: string;
453
+ minLength: number;
454
+ maxLength: number;
455
+ description: string;
456
+ };
457
+ description: {
458
+ type: string;
459
+ maxLength: number;
460
+ description: string;
461
+ };
462
+ priority: {
463
+ type: string;
464
+ enum: string[];
465
+ default: string;
466
+ description: string;
467
+ };
468
+ category: {
469
+ type: string;
470
+ enum: string[];
471
+ default: string;
472
+ description: string;
473
+ };
474
+ status?: undefined;
475
+ taskId?: undefined;
476
+ tasks?: undefined;
477
+ taskIds?: undefined;
478
+ updates?: undefined;
479
+ position?: undefined;
480
+ };
481
+ required: string[];
482
+ };
483
+ } | {
484
+ name: string;
485
+ description: string;
486
+ inputSchema: {
487
+ type: string;
488
+ properties: {
489
+ siteId: {
490
+ type: string;
491
+ description: string;
492
+ };
493
+ status: {
494
+ type: string;
495
+ enum: string[];
496
+ description: string;
497
+ };
498
+ priority: {
499
+ type: string;
500
+ enum: string[];
501
+ description: string;
502
+ default?: undefined;
503
+ };
504
+ category: {
505
+ type: string;
506
+ enum: string[];
507
+ description: string;
508
+ default?: undefined;
509
+ };
510
+ title?: undefined;
511
+ description?: undefined;
512
+ taskId?: undefined;
513
+ tasks?: undefined;
514
+ taskIds?: undefined;
515
+ updates?: undefined;
516
+ position?: undefined;
517
+ };
518
+ required: string[];
519
+ };
520
+ } | {
521
+ name: string;
522
+ description: string;
523
+ inputSchema: {
524
+ type: string;
525
+ properties: {
526
+ taskId: {
527
+ type: string;
528
+ description: string;
529
+ };
530
+ siteId?: undefined;
531
+ title?: undefined;
532
+ description?: undefined;
533
+ priority?: undefined;
534
+ category?: undefined;
535
+ status?: undefined;
536
+ tasks?: undefined;
537
+ taskIds?: undefined;
538
+ updates?: undefined;
539
+ position?: undefined;
540
+ };
541
+ required: string[];
542
+ };
543
+ } | {
544
+ name: string;
545
+ description: string;
546
+ inputSchema: {
547
+ type: string;
548
+ properties: {
549
+ taskId: {
550
+ type: string;
551
+ description: string;
552
+ };
553
+ title: {
554
+ type: string;
555
+ minLength: number;
556
+ maxLength: number;
557
+ description: string;
558
+ };
559
+ description: {
560
+ type: string;
561
+ maxLength: number;
562
+ description: string;
563
+ };
564
+ status: {
565
+ type: string;
566
+ enum: string[];
567
+ description: string;
568
+ };
569
+ priority: {
570
+ type: string;
571
+ enum: string[];
572
+ description: string;
573
+ default?: undefined;
574
+ };
575
+ category: {
576
+ type: string;
577
+ enum: string[];
578
+ description: string;
579
+ default?: undefined;
580
+ };
581
+ siteId?: undefined;
582
+ tasks?: undefined;
583
+ taskIds?: undefined;
584
+ updates?: undefined;
585
+ position?: undefined;
586
+ };
587
+ required: string[];
588
+ };
589
+ } | {
590
+ name: string;
591
+ description: string;
592
+ inputSchema: {
593
+ type: string;
594
+ properties: {
595
+ siteId: {
596
+ type: string;
597
+ description: string;
598
+ };
599
+ tasks: {
600
+ type: string;
601
+ minItems: number;
602
+ maxItems: number;
603
+ items: {
604
+ type: string;
605
+ properties: {
606
+ title: {
607
+ type: string;
608
+ minLength: number;
609
+ maxLength: number;
610
+ description: string;
611
+ };
612
+ description: {
613
+ type: string;
614
+ maxLength: number;
615
+ description: string;
616
+ };
617
+ priority: {
618
+ type: string;
619
+ enum: string[];
620
+ default: string;
621
+ description: string;
622
+ };
623
+ category: {
624
+ type: string;
625
+ enum: string[];
626
+ default: string;
627
+ description: string;
628
+ };
629
+ };
630
+ required: string[];
631
+ };
632
+ description: string;
633
+ };
634
+ title?: undefined;
635
+ description?: undefined;
636
+ priority?: undefined;
637
+ category?: undefined;
638
+ status?: undefined;
639
+ taskId?: undefined;
640
+ taskIds?: undefined;
641
+ updates?: undefined;
642
+ position?: undefined;
643
+ };
644
+ required: string[];
645
+ };
646
+ } | {
647
+ name: string;
648
+ description: string;
649
+ inputSchema: {
650
+ type: string;
651
+ properties: {
652
+ taskIds: {
653
+ type: string;
654
+ minItems: number;
655
+ maxItems: number;
656
+ items: {
657
+ type: string;
658
+ };
659
+ description: string;
660
+ };
661
+ updates: {
662
+ type: string;
663
+ properties: {
664
+ status: {
665
+ type: string;
666
+ enum: string[];
667
+ description: string;
668
+ };
669
+ priority: {
670
+ type: string;
671
+ enum: string[];
672
+ description: string;
673
+ };
674
+ };
675
+ description: string;
676
+ };
677
+ siteId?: undefined;
678
+ title?: undefined;
679
+ description?: undefined;
680
+ priority?: undefined;
681
+ category?: undefined;
682
+ status?: undefined;
683
+ taskId?: undefined;
684
+ tasks?: undefined;
685
+ position?: undefined;
686
+ };
687
+ required: string[];
688
+ };
689
+ } | {
690
+ name: string;
691
+ description: string;
692
+ inputSchema: {
693
+ type: string;
694
+ properties: {
695
+ taskId: {
696
+ type: string;
697
+ description: string;
698
+ };
699
+ status: {
700
+ type: string;
701
+ enum: string[];
702
+ description: string;
703
+ };
704
+ position: {
705
+ type: string;
706
+ description: string;
707
+ };
708
+ siteId?: undefined;
709
+ title?: undefined;
710
+ description?: undefined;
711
+ priority?: undefined;
712
+ category?: undefined;
713
+ tasks?: undefined;
714
+ taskIds?: undefined;
715
+ updates?: undefined;
716
+ };
717
+ required: string[];
718
+ };
719
+ } | {
720
+ name: string;
721
+ description: string;
722
+ inputSchema: {
723
+ type: string;
724
+ properties: {
725
+ siteId: {
726
+ type: string;
727
+ description: string;
728
+ };
729
+ type: {
730
+ type: string;
731
+ enum: string[];
732
+ description: string;
733
+ };
734
+ limit: {
735
+ type: string;
736
+ minimum: number;
737
+ maximum: number;
738
+ default: number;
739
+ description: string;
740
+ };
741
+ reportId?: undefined;
742
+ weeklyEnabled?: undefined;
743
+ monthlyEnabled?: undefined;
744
+ dayOfWeek?: undefined;
745
+ dayOfMonth?: undefined;
746
+ hour?: undefined;
747
+ minute?: undefined;
748
+ };
749
+ required: never[];
750
+ };
751
+ } | {
752
+ name: string;
753
+ description: string;
754
+ inputSchema: {
755
+ type: string;
756
+ properties: {
757
+ reportId: {
758
+ type: string;
759
+ description: string;
760
+ };
761
+ siteId?: undefined;
762
+ type?: undefined;
763
+ limit?: undefined;
764
+ weeklyEnabled?: undefined;
765
+ monthlyEnabled?: undefined;
766
+ dayOfWeek?: undefined;
767
+ dayOfMonth?: undefined;
768
+ hour?: undefined;
769
+ minute?: undefined;
770
+ };
771
+ required: string[];
772
+ };
773
+ } | {
774
+ name: string;
775
+ description: string;
776
+ inputSchema: {
777
+ type: string;
778
+ properties: {
779
+ siteId: {
780
+ type: string;
781
+ description: string;
782
+ };
783
+ type: {
784
+ type: string;
785
+ enum: string[];
786
+ description: string;
787
+ };
788
+ limit?: undefined;
789
+ reportId?: undefined;
790
+ weeklyEnabled?: undefined;
791
+ monthlyEnabled?: undefined;
792
+ dayOfWeek?: undefined;
793
+ dayOfMonth?: undefined;
794
+ hour?: undefined;
795
+ minute?: undefined;
796
+ };
797
+ required: string[];
798
+ };
799
+ } | {
800
+ name: string;
801
+ description: string;
802
+ inputSchema: {
803
+ type: string;
804
+ properties: {
805
+ siteId: {
806
+ type: string;
807
+ description: string;
808
+ };
809
+ type?: undefined;
810
+ limit?: undefined;
811
+ reportId?: undefined;
812
+ weeklyEnabled?: undefined;
813
+ monthlyEnabled?: undefined;
814
+ dayOfWeek?: undefined;
815
+ dayOfMonth?: undefined;
816
+ hour?: undefined;
817
+ minute?: undefined;
818
+ };
819
+ required: string[];
820
+ };
821
+ } | {
822
+ name: string;
823
+ description: string;
824
+ inputSchema: {
825
+ type: string;
826
+ properties: {
827
+ siteId: {
828
+ type: string;
829
+ description: string;
830
+ };
831
+ weeklyEnabled: {
832
+ type: string;
833
+ description: string;
834
+ };
835
+ monthlyEnabled: {
836
+ type: string;
837
+ description: string;
838
+ };
839
+ dayOfWeek: {
840
+ type: string;
841
+ minimum: number;
842
+ maximum: number;
843
+ description: string;
844
+ };
845
+ dayOfMonth: {
846
+ type: string;
847
+ minimum: number;
848
+ maximum: number;
849
+ description: string;
850
+ };
851
+ hour: {
852
+ type: string;
853
+ minimum: number;
854
+ maximum: number;
855
+ description: string;
856
+ };
857
+ minute: {
858
+ type: string;
859
+ minimum: number;
860
+ maximum: number;
861
+ description: string;
862
+ };
863
+ type?: undefined;
864
+ limit?: undefined;
865
+ reportId?: undefined;
866
+ };
867
+ required: string[];
868
+ };
869
+ } | {
870
+ name: string;
871
+ description: string;
872
+ inputSchema: {
873
+ type: string;
874
+ properties: {
875
+ siteId: {
876
+ type: string;
877
+ description: string;
878
+ };
879
+ status?: undefined;
880
+ pageId?: undefined;
881
+ days?: undefined;
882
+ enabled?: undefined;
883
+ checkFrequency?: undefined;
884
+ notifyOnChange?: undefined;
885
+ };
886
+ required: string[];
887
+ };
888
+ } | {
889
+ name: string;
890
+ description: string;
891
+ inputSchema: {
892
+ type: string;
893
+ properties: {
894
+ siteId: {
895
+ type: string;
896
+ description: string;
897
+ };
898
+ status: {
899
+ type: string;
900
+ enum: string[];
901
+ default: string;
902
+ description: string;
903
+ };
904
+ pageId?: undefined;
905
+ days?: undefined;
906
+ enabled?: undefined;
907
+ checkFrequency?: undefined;
908
+ notifyOnChange?: undefined;
909
+ };
910
+ required: string[];
911
+ };
912
+ } | {
913
+ name: string;
914
+ description: string;
915
+ inputSchema: {
916
+ type: string;
917
+ properties: {
918
+ siteId: {
919
+ type: string;
920
+ description: string;
921
+ };
922
+ pageId: {
923
+ type: string;
924
+ description: string;
925
+ };
926
+ status?: undefined;
927
+ days?: undefined;
928
+ enabled?: undefined;
929
+ checkFrequency?: undefined;
930
+ notifyOnChange?: undefined;
931
+ };
932
+ required: string[];
933
+ };
934
+ } | {
935
+ name: string;
936
+ description: string;
937
+ inputSchema: {
938
+ type: string;
939
+ properties: {
940
+ siteId: {
941
+ type: string;
942
+ description: string;
943
+ };
944
+ days: {
945
+ type: string;
946
+ minimum: number;
947
+ maximum: number;
948
+ default: number;
949
+ description: string;
950
+ };
951
+ status?: undefined;
952
+ pageId?: undefined;
953
+ enabled?: undefined;
954
+ checkFrequency?: undefined;
955
+ notifyOnChange?: undefined;
956
+ };
957
+ required: string[];
958
+ };
959
+ } | {
960
+ name: string;
961
+ description: string;
962
+ inputSchema: {
963
+ type: string;
964
+ properties: {
965
+ siteId: {
966
+ type: string;
967
+ description: string;
968
+ };
969
+ enabled: {
970
+ type: string;
971
+ description: string;
972
+ };
973
+ checkFrequency: {
974
+ type: string;
975
+ description: string;
976
+ };
977
+ notifyOnChange: {
978
+ type: string;
979
+ description: string;
980
+ };
981
+ status?: undefined;
982
+ pageId?: undefined;
983
+ days?: undefined;
984
+ };
985
+ required: string[];
986
+ };
987
+ } | {
988
+ name: string;
989
+ description: string;
990
+ inputSchema: {
991
+ type: string;
992
+ properties: {
993
+ siteId: {
994
+ type: string;
995
+ description: string;
996
+ };
997
+ action?: undefined;
998
+ strategySummary?: undefined;
999
+ goalType?: undefined;
1000
+ goalDescription?: undefined;
1001
+ goalTargetValue?: undefined;
1002
+ goalCurrentValue?: undefined;
1003
+ goalTargetDate?: undefined;
1004
+ goalId?: undefined;
1005
+ goalStatus?: undefined;
1006
+ title?: undefined;
1007
+ description?: undefined;
1008
+ category?: undefined;
1009
+ hypothesis?: undefined;
1010
+ targetMetrics?: undefined;
1011
+ measurementDays?: undefined;
1012
+ type?: undefined;
1013
+ fact?: undefined;
1014
+ pattern?: undefined;
1015
+ evidence?: undefined;
1016
+ applicableCategories?: undefined;
1017
+ confidence?: undefined;
1018
+ limit?: undefined;
1019
+ priority?: undefined;
1020
+ actionId?: undefined;
1021
+ status?: undefined;
1022
+ };
1023
+ required: string[];
1024
+ };
1025
+ } | {
1026
+ name: string;
1027
+ description: string;
1028
+ inputSchema: {
1029
+ type: string;
1030
+ properties: {
1031
+ siteId: {
1032
+ type: string;
1033
+ description: string;
1034
+ };
1035
+ action: {
1036
+ type: string;
1037
+ enum: string[];
1038
+ description: string;
1039
+ };
1040
+ strategySummary: {
1041
+ type: string;
1042
+ description: string;
1043
+ };
1044
+ goalType: {
1045
+ type: string;
1046
+ enum: string[];
1047
+ description: string;
1048
+ };
1049
+ goalDescription: {
1050
+ type: string;
1051
+ description: string;
1052
+ };
1053
+ goalTargetValue: {
1054
+ type: string;
1055
+ description: string;
1056
+ };
1057
+ goalCurrentValue: {
1058
+ type: string;
1059
+ description: string;
1060
+ };
1061
+ goalTargetDate: {
1062
+ type: string;
1063
+ description: string;
1064
+ };
1065
+ goalId: {
1066
+ type: string;
1067
+ description: string;
1068
+ };
1069
+ goalStatus: {
1070
+ type: string;
1071
+ enum: string[];
1072
+ description: string;
1073
+ };
1074
+ title?: undefined;
1075
+ description?: undefined;
1076
+ category?: undefined;
1077
+ hypothesis?: undefined;
1078
+ targetMetrics?: undefined;
1079
+ measurementDays?: undefined;
1080
+ type?: undefined;
1081
+ fact?: undefined;
1082
+ pattern?: undefined;
1083
+ evidence?: undefined;
1084
+ applicableCategories?: undefined;
1085
+ confidence?: undefined;
1086
+ limit?: undefined;
1087
+ priority?: undefined;
1088
+ actionId?: undefined;
1089
+ status?: undefined;
1090
+ };
1091
+ required: string[];
1092
+ };
1093
+ } | {
1094
+ name: string;
1095
+ description: string;
1096
+ inputSchema: {
1097
+ type: string;
1098
+ properties: {
1099
+ siteId: {
1100
+ type: string;
1101
+ description: string;
1102
+ };
1103
+ title: {
1104
+ type: string;
1105
+ description: string;
1106
+ };
1107
+ description: {
1108
+ type: string;
1109
+ description: string;
1110
+ };
1111
+ category: {
1112
+ type: string;
1113
+ enum: string[];
1114
+ description: string;
1115
+ };
1116
+ hypothesis: {
1117
+ type: string;
1118
+ description: string;
1119
+ };
1120
+ targetMetrics: {
1121
+ type: string;
1122
+ items: {
1123
+ type: string;
1124
+ };
1125
+ description: string;
1126
+ };
1127
+ measurementDays: {
1128
+ type: string;
1129
+ minimum: number;
1130
+ maximum: number;
1131
+ default: number;
1132
+ description: string;
1133
+ };
1134
+ goalId: {
1135
+ type: string;
1136
+ description: string;
1137
+ };
1138
+ action?: undefined;
1139
+ strategySummary?: undefined;
1140
+ goalType?: undefined;
1141
+ goalDescription?: undefined;
1142
+ goalTargetValue?: undefined;
1143
+ goalCurrentValue?: undefined;
1144
+ goalTargetDate?: undefined;
1145
+ goalStatus?: undefined;
1146
+ type?: undefined;
1147
+ fact?: undefined;
1148
+ pattern?: undefined;
1149
+ evidence?: undefined;
1150
+ applicableCategories?: undefined;
1151
+ confidence?: undefined;
1152
+ limit?: undefined;
1153
+ priority?: undefined;
1154
+ actionId?: undefined;
1155
+ status?: undefined;
1156
+ };
1157
+ required: string[];
1158
+ };
1159
+ } | {
1160
+ name: string;
1161
+ description: string;
1162
+ inputSchema: {
1163
+ type: string;
1164
+ properties: {
1165
+ siteId: {
1166
+ type: string;
1167
+ description: string;
1168
+ };
1169
+ type: {
1170
+ type: string;
1171
+ enum: string[];
1172
+ description: string;
1173
+ };
1174
+ fact: {
1175
+ type: string;
1176
+ description: string;
1177
+ };
1178
+ pattern: {
1179
+ type: string;
1180
+ description: string;
1181
+ };
1182
+ evidence: {
1183
+ type: string;
1184
+ description: string;
1185
+ };
1186
+ applicableCategories: {
1187
+ type: string;
1188
+ items: {
1189
+ type: string;
1190
+ enum: string[];
1191
+ };
1192
+ description: string;
1193
+ };
1194
+ confidence: {
1195
+ type: string;
1196
+ enum: string[];
1197
+ default: string;
1198
+ description: string;
1199
+ };
1200
+ action?: undefined;
1201
+ strategySummary?: undefined;
1202
+ goalType?: undefined;
1203
+ goalDescription?: undefined;
1204
+ goalTargetValue?: undefined;
1205
+ goalCurrentValue?: undefined;
1206
+ goalTargetDate?: undefined;
1207
+ goalId?: undefined;
1208
+ goalStatus?: undefined;
1209
+ title?: undefined;
1210
+ description?: undefined;
1211
+ category?: undefined;
1212
+ hypothesis?: undefined;
1213
+ targetMetrics?: undefined;
1214
+ measurementDays?: undefined;
1215
+ limit?: undefined;
1216
+ priority?: undefined;
1217
+ actionId?: undefined;
1218
+ status?: undefined;
1219
+ };
1220
+ required: string[];
1221
+ };
1222
+ } | {
1223
+ name: string;
1224
+ description: string;
1225
+ inputSchema: {
1226
+ type: string;
1227
+ properties: {
1228
+ siteId: {
1229
+ type: string;
1230
+ description: string;
1231
+ };
1232
+ goalId: {
1233
+ type: string;
1234
+ description: string;
1235
+ };
1236
+ action?: undefined;
1237
+ strategySummary?: undefined;
1238
+ goalType?: undefined;
1239
+ goalDescription?: undefined;
1240
+ goalTargetValue?: undefined;
1241
+ goalCurrentValue?: undefined;
1242
+ goalTargetDate?: undefined;
1243
+ goalStatus?: undefined;
1244
+ title?: undefined;
1245
+ description?: undefined;
1246
+ category?: undefined;
1247
+ hypothesis?: undefined;
1248
+ targetMetrics?: undefined;
1249
+ measurementDays?: undefined;
1250
+ type?: undefined;
1251
+ fact?: undefined;
1252
+ pattern?: undefined;
1253
+ evidence?: undefined;
1254
+ applicableCategories?: undefined;
1255
+ confidence?: undefined;
1256
+ limit?: undefined;
1257
+ priority?: undefined;
1258
+ actionId?: undefined;
1259
+ status?: undefined;
1260
+ };
1261
+ required: string[];
1262
+ };
1263
+ } | {
1264
+ name: string;
1265
+ description: string;
1266
+ inputSchema: {
1267
+ type: string;
1268
+ properties: {
1269
+ siteId: {
1270
+ type: string;
1271
+ description: string;
1272
+ };
1273
+ limit: {
1274
+ type: string;
1275
+ minimum: number;
1276
+ maximum: number;
1277
+ default: number;
1278
+ description: string;
1279
+ };
1280
+ action?: undefined;
1281
+ strategySummary?: undefined;
1282
+ goalType?: undefined;
1283
+ goalDescription?: undefined;
1284
+ goalTargetValue?: undefined;
1285
+ goalCurrentValue?: undefined;
1286
+ goalTargetDate?: undefined;
1287
+ goalId?: undefined;
1288
+ goalStatus?: undefined;
1289
+ title?: undefined;
1290
+ description?: undefined;
1291
+ category?: undefined;
1292
+ hypothesis?: undefined;
1293
+ targetMetrics?: undefined;
1294
+ measurementDays?: undefined;
1295
+ type?: undefined;
1296
+ fact?: undefined;
1297
+ pattern?: undefined;
1298
+ evidence?: undefined;
1299
+ applicableCategories?: undefined;
1300
+ confidence?: undefined;
1301
+ priority?: undefined;
1302
+ actionId?: undefined;
1303
+ status?: undefined;
1304
+ };
1305
+ required: string[];
1306
+ };
1307
+ } | {
1308
+ name: string;
1309
+ description: string;
1310
+ inputSchema: {
1311
+ type: string;
1312
+ properties: {
1313
+ siteId: {
1314
+ type: string;
1315
+ description: string;
1316
+ };
1317
+ title: {
1318
+ type: string;
1319
+ description: string;
1320
+ };
1321
+ description: {
1322
+ type: string;
1323
+ description: string;
1324
+ };
1325
+ category: {
1326
+ type: string;
1327
+ enum: string[];
1328
+ description: string;
1329
+ };
1330
+ priority: {
1331
+ type: string;
1332
+ enum: string[];
1333
+ description: string;
1334
+ };
1335
+ action?: undefined;
1336
+ strategySummary?: undefined;
1337
+ goalType?: undefined;
1338
+ goalDescription?: undefined;
1339
+ goalTargetValue?: undefined;
1340
+ goalCurrentValue?: undefined;
1341
+ goalTargetDate?: undefined;
1342
+ goalId?: undefined;
1343
+ goalStatus?: undefined;
1344
+ hypothesis?: undefined;
1345
+ targetMetrics?: undefined;
1346
+ measurementDays?: undefined;
1347
+ type?: undefined;
1348
+ fact?: undefined;
1349
+ pattern?: undefined;
1350
+ evidence?: undefined;
1351
+ applicableCategories?: undefined;
1352
+ confidence?: undefined;
1353
+ limit?: undefined;
1354
+ actionId?: undefined;
1355
+ status?: undefined;
1356
+ };
1357
+ required: string[];
1358
+ };
1359
+ } | {
1360
+ name: string;
1361
+ description: string;
1362
+ inputSchema: {
1363
+ type: string;
1364
+ properties: {
1365
+ siteId: {
1366
+ type: string;
1367
+ description: string;
1368
+ };
1369
+ actionId: {
1370
+ type: string;
1371
+ description: string;
1372
+ };
1373
+ status: {
1374
+ type: string;
1375
+ description: string;
1376
+ };
1377
+ priority: {
1378
+ type: string;
1379
+ enum: string[];
1380
+ description: string;
1381
+ };
1382
+ action?: undefined;
1383
+ strategySummary?: undefined;
1384
+ goalType?: undefined;
1385
+ goalDescription?: undefined;
1386
+ goalTargetValue?: undefined;
1387
+ goalCurrentValue?: undefined;
1388
+ goalTargetDate?: undefined;
1389
+ goalId?: undefined;
1390
+ goalStatus?: undefined;
1391
+ title?: undefined;
1392
+ description?: undefined;
1393
+ category?: undefined;
1394
+ hypothesis?: undefined;
1395
+ targetMetrics?: undefined;
1396
+ measurementDays?: undefined;
1397
+ type?: undefined;
1398
+ fact?: undefined;
1399
+ pattern?: undefined;
1400
+ evidence?: undefined;
1401
+ applicableCategories?: undefined;
1402
+ confidence?: undefined;
1403
+ limit?: undefined;
1404
+ };
1405
+ required: string[];
1406
+ };
1407
+ } | {
1408
+ name: string;
1409
+ description: string;
1410
+ inputSchema: {
1411
+ type: string;
1412
+ properties: {
1413
+ siteId: {
1414
+ type: string;
1415
+ description: string;
1416
+ };
1417
+ unreadOnly: {
1418
+ type: string;
1419
+ default: boolean;
1420
+ description: string;
1421
+ };
1422
+ };
1423
+ required: string[];
1424
+ };
1425
+ } | {
1426
+ name: string;
1427
+ description: string;
1428
+ inputSchema: {
1429
+ type: string;
1430
+ properties: {
1431
+ siteId: {
1432
+ type: string;
1433
+ description: string;
1434
+ };
1435
+ unreadOnly?: undefined;
1436
+ };
1437
+ required: string[];
1438
+ };
61
1439
  } | {
62
1440
  name: string;
63
1441
  description: string;
@@ -66,16 +1444,65 @@ export declare const allTools: ({
66
1444
  properties: {
67
1445
  url: {
68
1446
  type: string;
69
- format: string;
70
1447
  description: string;
71
1448
  };
72
- strategy: {
1449
+ siteId: {
1450
+ type: string;
1451
+ description: string;
1452
+ };
1453
+ limit?: undefined;
1454
+ };
1455
+ required: string[];
1456
+ };
1457
+ } | {
1458
+ name: string;
1459
+ description: string;
1460
+ inputSchema: {
1461
+ type: string;
1462
+ properties: {
1463
+ siteId: {
1464
+ type: string;
1465
+ description: string;
1466
+ };
1467
+ limit: {
1468
+ type: string;
1469
+ minimum: number;
1470
+ maximum: number;
1471
+ default: number;
1472
+ description: string;
1473
+ };
1474
+ url?: undefined;
1475
+ };
1476
+ required: string[];
1477
+ };
1478
+ } | {
1479
+ name: string;
1480
+ description: string;
1481
+ inputSchema: {
1482
+ type: string;
1483
+ properties: {
1484
+ query: {
1485
+ type: string;
1486
+ description: string;
1487
+ };
1488
+ siteId: {
1489
+ type: string;
1490
+ description: string;
1491
+ };
1492
+ country: {
73
1493
  type: string;
74
- enum: string[];
75
1494
  default: string;
76
1495
  description: string;
77
1496
  };
78
- urls?: undefined;
1497
+ numResults: {
1498
+ type: string;
1499
+ minimum: number;
1500
+ maximum: number;
1501
+ default: number;
1502
+ description: string;
1503
+ };
1504
+ limit?: undefined;
1505
+ queries?: undefined;
79
1506
  };
80
1507
  required: string[];
81
1508
  };
@@ -85,23 +1512,51 @@ export declare const allTools: ({
85
1512
  inputSchema: {
86
1513
  type: string;
87
1514
  properties: {
88
- urls: {
1515
+ siteId: {
1516
+ type: string;
1517
+ description: string;
1518
+ };
1519
+ limit: {
1520
+ type: string;
1521
+ minimum: number;
1522
+ maximum: number;
1523
+ default: number;
1524
+ description: string;
1525
+ };
1526
+ query?: undefined;
1527
+ country?: undefined;
1528
+ numResults?: undefined;
1529
+ queries?: undefined;
1530
+ };
1531
+ required: never[];
1532
+ };
1533
+ } | {
1534
+ name: string;
1535
+ description: string;
1536
+ inputSchema: {
1537
+ type: string;
1538
+ properties: {
1539
+ queries: {
89
1540
  type: string;
90
1541
  items: {
91
1542
  type: string;
92
- format: string;
93
1543
  };
94
1544
  minItems: number;
95
1545
  maxItems: number;
96
1546
  description: string;
97
1547
  };
98
- strategy: {
1548
+ siteId: {
1549
+ type: string;
1550
+ description: string;
1551
+ };
1552
+ country: {
99
1553
  type: string;
100
- enum: string[];
101
1554
  default: string;
102
1555
  description: string;
103
1556
  };
104
- url?: undefined;
1557
+ query?: undefined;
1558
+ numResults?: undefined;
1559
+ limit?: undefined;
105
1560
  };
106
1561
  required: string[];
107
1562
  };
@@ -111,19 +1566,11 @@ export declare const allTools: ({
111
1566
  inputSchema: {
112
1567
  type: string;
113
1568
  properties: {
114
- taskId: {
1569
+ siteId: {
115
1570
  type: string;
116
1571
  description: string;
117
1572
  };
118
- siteId?: undefined;
119
- title?: undefined;
120
- description?: undefined;
121
- priority?: undefined;
122
- category?: undefined;
123
- status?: undefined;
124
- tasks?: undefined;
125
- taskIds?: undefined;
126
- updates?: undefined;
1573
+ sitemapUrl?: undefined;
127
1574
  };
128
1575
  required: string[];
129
1576
  };
@@ -133,42 +1580,71 @@ export declare const allTools: ({
133
1580
  inputSchema: {
134
1581
  type: string;
135
1582
  properties: {
136
- taskId: {
1583
+ siteId: {
137
1584
  type: string;
138
1585
  description: string;
139
1586
  };
140
- title: {
1587
+ sitemapUrl: {
141
1588
  type: string;
142
- minLength: number;
143
- maxLength: number;
144
1589
  description: string;
145
1590
  };
146
- description: {
1591
+ };
1592
+ required: string[];
1593
+ };
1594
+ } | {
1595
+ name: string;
1596
+ description: string;
1597
+ inputSchema: {
1598
+ type: string;
1599
+ properties: {
1600
+ siteId: {
147
1601
  type: string;
148
- maxLength: number;
149
1602
  description: string;
150
1603
  };
151
- status: {
1604
+ businessDescription?: undefined;
1605
+ targetAudience?: undefined;
1606
+ competitors?: undefined;
1607
+ keyTopics?: undefined;
1608
+ brandVoice?: undefined;
1609
+ };
1610
+ required: string[];
1611
+ };
1612
+ } | {
1613
+ name: string;
1614
+ description: string;
1615
+ inputSchema: {
1616
+ type: string;
1617
+ properties: {
1618
+ siteId: {
152
1619
  type: string;
153
- enum: string[];
154
1620
  description: string;
155
1621
  };
156
- priority: {
1622
+ businessDescription: {
157
1623
  type: string;
158
- enum: string[];
159
1624
  description: string;
160
- default?: undefined;
161
1625
  };
162
- category: {
1626
+ targetAudience: {
1627
+ type: string;
1628
+ description: string;
1629
+ };
1630
+ competitors: {
1631
+ type: string;
1632
+ items: {
1633
+ type: string;
1634
+ };
1635
+ description: string;
1636
+ };
1637
+ keyTopics: {
1638
+ type: string;
1639
+ items: {
1640
+ type: string;
1641
+ };
1642
+ description: string;
1643
+ };
1644
+ brandVoice: {
163
1645
  type: string;
164
- enum: string[];
165
1646
  description: string;
166
- default?: undefined;
167
1647
  };
168
- siteId?: undefined;
169
- tasks?: undefined;
170
- taskIds?: undefined;
171
- updates?: undefined;
172
1648
  };
173
1649
  required: string[];
174
1650
  };
@@ -178,39 +1654,66 @@ export declare const allTools: ({
178
1654
  inputSchema: {
179
1655
  type: string;
180
1656
  properties: {
181
- taskIds: {
1657
+ emailNotifications?: undefined;
1658
+ weeklyDigest?: undefined;
1659
+ alertOnAnomaly?: undefined;
1660
+ alertOnIndexingChange?: undefined;
1661
+ alertOnRankingChange?: undefined;
1662
+ };
1663
+ required: never[];
1664
+ };
1665
+ } | {
1666
+ name: string;
1667
+ description: string;
1668
+ inputSchema: {
1669
+ type: string;
1670
+ properties: {
1671
+ emailNotifications: {
1672
+ type: string;
1673
+ description: string;
1674
+ };
1675
+ weeklyDigest: {
1676
+ type: string;
1677
+ description: string;
1678
+ };
1679
+ alertOnAnomaly: {
1680
+ type: string;
1681
+ description: string;
1682
+ };
1683
+ alertOnIndexingChange: {
1684
+ type: string;
1685
+ description: string;
1686
+ };
1687
+ alertOnRankingChange: {
1688
+ type: string;
1689
+ description: string;
1690
+ };
1691
+ };
1692
+ required: never[];
1693
+ };
1694
+ } | {
1695
+ name: string;
1696
+ description: string;
1697
+ inputSchema: {
1698
+ type: string;
1699
+ properties: {
1700
+ keywords: {
182
1701
  type: string;
183
- minItems: number;
184
- maxItems: number;
185
1702
  items: {
186
1703
  type: string;
187
1704
  };
1705
+ minItems: number;
1706
+ maxItems: number;
188
1707
  description: string;
189
1708
  };
190
- updates: {
1709
+ location_code: {
1710
+ type: string;
1711
+ description: string;
1712
+ };
1713
+ language_code: {
191
1714
  type: string;
192
- properties: {
193
- status: {
194
- type: string;
195
- enum: string[];
196
- description: string;
197
- };
198
- priority: {
199
- type: string;
200
- enum: string[];
201
- description: string;
202
- };
203
- };
204
1715
  description: string;
205
1716
  };
206
- siteId?: undefined;
207
- title?: undefined;
208
- description?: undefined;
209
- priority?: undefined;
210
- category?: undefined;
211
- status?: undefined;
212
- taskId?: undefined;
213
- tasks?: undefined;
214
1717
  };
215
1718
  required: string[];
216
1719
  };
@@ -220,13 +1723,48 @@ export declare const allTools: ({
220
1723
  inputSchema: {
221
1724
  type: string;
222
1725
  properties: {
223
- reportId: {
1726
+ siteId: {
1727
+ type: string;
1728
+ description: string;
1729
+ };
1730
+ message: {
1731
+ type: string;
1732
+ description: string;
1733
+ };
1734
+ conversationId: {
1735
+ type: string;
1736
+ description: string;
1737
+ };
1738
+ };
1739
+ required: string[];
1740
+ };
1741
+ } | {
1742
+ name: string;
1743
+ description: string;
1744
+ inputSchema: {
1745
+ type: string;
1746
+ properties: {
1747
+ siteId: {
1748
+ type: string;
1749
+ description: string;
1750
+ };
1751
+ conversationId?: undefined;
1752
+ title?: undefined;
1753
+ };
1754
+ required: never[];
1755
+ };
1756
+ } | {
1757
+ name: string;
1758
+ description: string;
1759
+ inputSchema: {
1760
+ type: string;
1761
+ properties: {
1762
+ conversationId: {
224
1763
  type: string;
225
1764
  description: string;
226
1765
  };
227
1766
  siteId?: undefined;
228
- type?: undefined;
229
- limit?: undefined;
1767
+ title?: undefined;
230
1768
  };
231
1769
  required: string[];
232
1770
  };
@@ -240,6 +1778,11 @@ export declare const allTools: ({
240
1778
  type: string;
241
1779
  description: string;
242
1780
  };
1781
+ title: {
1782
+ type: string;
1783
+ description: string;
1784
+ };
1785
+ conversationId?: undefined;
243
1786
  };
244
1787
  required: string[];
245
1788
  };