@heyseo/mcp-server 0.1.2 → 0.1.3
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/README.md +46 -5
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/prompts/index.d.ts.map +1 -1
- package/dist/prompts/index.js +38 -0
- package/dist/prompts/index.js.map +1 -1
- package/dist/tools/gsc.d.ts +52 -0
- package/dist/tools/gsc.d.ts.map +1 -1
- package/dist/tools/gsc.js +143 -0
- package/dist/tools/gsc.js.map +1 -1
- package/dist/tools/index.d.ts +147 -3
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +7 -4
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/tasks.d.ts +180 -0
- package/dist/tools/tasks.d.ts.map +1 -1
- package/dist/tools/tasks.js +174 -0
- package/dist/tools/tasks.js.map +1 -1
- package/dist/utils/api-client.d.ts +16 -0
- package/dist/utils/api-client.d.ts.map +1 -1
- package/dist/utils/api-client.js +38 -1
- package/dist/utils/api-client.js.map +1 -1
- package/package.json +1 -1
package/dist/tools/index.d.ts
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* Tool Registry
|
|
3
3
|
* Exports all tools for the HeySeo MCP server
|
|
4
4
|
*/
|
|
5
|
-
import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, executeQueryGSC, executeTopKeywords, executeTopPages } from './gsc.js';
|
|
5
|
+
import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory } from './gsc.js';
|
|
6
6
|
import { ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources } from './ga4.js';
|
|
7
7
|
import { pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAnalyzePageSpeed, executeBulkPageSpeed } from './pagespeed.js';
|
|
8
8
|
import { comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek } from './comparison.js';
|
|
9
|
-
import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask } from './tasks.js';
|
|
10
|
-
export { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, executeQueryGSC, executeTopKeywords, executeTopPages, 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, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, };
|
|
9
|
+
import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks } from './tasks.js';
|
|
10
|
+
export { 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, };
|
|
11
11
|
/**
|
|
12
12
|
* All tool definitions for MCP registration
|
|
13
13
|
*/
|
|
@@ -69,6 +69,8 @@ export declare const allTools: ({
|
|
|
69
69
|
description: string;
|
|
70
70
|
};
|
|
71
71
|
limit?: undefined;
|
|
72
|
+
keyword?: undefined;
|
|
73
|
+
days?: undefined;
|
|
72
74
|
};
|
|
73
75
|
required: string[];
|
|
74
76
|
};
|
|
@@ -102,6 +104,38 @@ export declare const allTools: ({
|
|
|
102
104
|
dimensions?: undefined;
|
|
103
105
|
rowLimit?: undefined;
|
|
104
106
|
filters?: undefined;
|
|
107
|
+
keyword?: undefined;
|
|
108
|
+
days?: undefined;
|
|
109
|
+
};
|
|
110
|
+
required: string[];
|
|
111
|
+
};
|
|
112
|
+
} | {
|
|
113
|
+
name: string;
|
|
114
|
+
description: string;
|
|
115
|
+
inputSchema: {
|
|
116
|
+
type: string;
|
|
117
|
+
properties: {
|
|
118
|
+
siteId: {
|
|
119
|
+
type: string;
|
|
120
|
+
description: string;
|
|
121
|
+
};
|
|
122
|
+
keyword: {
|
|
123
|
+
type: string;
|
|
124
|
+
description: string;
|
|
125
|
+
};
|
|
126
|
+
days: {
|
|
127
|
+
type: string;
|
|
128
|
+
minimum: number;
|
|
129
|
+
maximum: number;
|
|
130
|
+
default: number;
|
|
131
|
+
description: string;
|
|
132
|
+
};
|
|
133
|
+
startDate?: undefined;
|
|
134
|
+
endDate?: undefined;
|
|
135
|
+
dimensions?: undefined;
|
|
136
|
+
rowLimit?: undefined;
|
|
137
|
+
filters?: undefined;
|
|
138
|
+
limit?: undefined;
|
|
105
139
|
};
|
|
106
140
|
required: string[];
|
|
107
141
|
};
|
|
@@ -383,6 +417,9 @@ export declare const allTools: ({
|
|
|
383
417
|
};
|
|
384
418
|
status?: undefined;
|
|
385
419
|
taskId?: undefined;
|
|
420
|
+
tasks?: undefined;
|
|
421
|
+
taskIds?: undefined;
|
|
422
|
+
updates?: undefined;
|
|
386
423
|
};
|
|
387
424
|
required: string[];
|
|
388
425
|
};
|
|
@@ -416,6 +453,9 @@ export declare const allTools: ({
|
|
|
416
453
|
title?: undefined;
|
|
417
454
|
description?: undefined;
|
|
418
455
|
taskId?: undefined;
|
|
456
|
+
tasks?: undefined;
|
|
457
|
+
taskIds?: undefined;
|
|
458
|
+
updates?: undefined;
|
|
419
459
|
};
|
|
420
460
|
required: string[];
|
|
421
461
|
};
|
|
@@ -435,6 +475,9 @@ export declare const allTools: ({
|
|
|
435
475
|
priority?: undefined;
|
|
436
476
|
category?: undefined;
|
|
437
477
|
status?: undefined;
|
|
478
|
+
tasks?: undefined;
|
|
479
|
+
taskIds?: undefined;
|
|
480
|
+
updates?: undefined;
|
|
438
481
|
};
|
|
439
482
|
required: string[];
|
|
440
483
|
};
|
|
@@ -477,6 +520,107 @@ export declare const allTools: ({
|
|
|
477
520
|
default?: undefined;
|
|
478
521
|
};
|
|
479
522
|
siteId?: undefined;
|
|
523
|
+
tasks?: undefined;
|
|
524
|
+
taskIds?: undefined;
|
|
525
|
+
updates?: undefined;
|
|
526
|
+
};
|
|
527
|
+
required: string[];
|
|
528
|
+
};
|
|
529
|
+
} | {
|
|
530
|
+
name: string;
|
|
531
|
+
description: string;
|
|
532
|
+
inputSchema: {
|
|
533
|
+
type: string;
|
|
534
|
+
properties: {
|
|
535
|
+
siteId: {
|
|
536
|
+
type: string;
|
|
537
|
+
description: string;
|
|
538
|
+
};
|
|
539
|
+
tasks: {
|
|
540
|
+
type: string;
|
|
541
|
+
minItems: number;
|
|
542
|
+
maxItems: number;
|
|
543
|
+
items: {
|
|
544
|
+
type: string;
|
|
545
|
+
properties: {
|
|
546
|
+
title: {
|
|
547
|
+
type: string;
|
|
548
|
+
minLength: number;
|
|
549
|
+
maxLength: number;
|
|
550
|
+
description: string;
|
|
551
|
+
};
|
|
552
|
+
description: {
|
|
553
|
+
type: string;
|
|
554
|
+
maxLength: number;
|
|
555
|
+
description: string;
|
|
556
|
+
};
|
|
557
|
+
priority: {
|
|
558
|
+
type: string;
|
|
559
|
+
enum: string[];
|
|
560
|
+
default: string;
|
|
561
|
+
description: string;
|
|
562
|
+
};
|
|
563
|
+
category: {
|
|
564
|
+
type: string;
|
|
565
|
+
enum: string[];
|
|
566
|
+
default: string;
|
|
567
|
+
description: string;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
required: string[];
|
|
571
|
+
};
|
|
572
|
+
description: string;
|
|
573
|
+
};
|
|
574
|
+
title?: undefined;
|
|
575
|
+
description?: undefined;
|
|
576
|
+
priority?: undefined;
|
|
577
|
+
category?: undefined;
|
|
578
|
+
status?: undefined;
|
|
579
|
+
taskId?: undefined;
|
|
580
|
+
taskIds?: undefined;
|
|
581
|
+
updates?: undefined;
|
|
582
|
+
};
|
|
583
|
+
required: string[];
|
|
584
|
+
};
|
|
585
|
+
} | {
|
|
586
|
+
name: string;
|
|
587
|
+
description: string;
|
|
588
|
+
inputSchema: {
|
|
589
|
+
type: string;
|
|
590
|
+
properties: {
|
|
591
|
+
taskIds: {
|
|
592
|
+
type: string;
|
|
593
|
+
minItems: number;
|
|
594
|
+
maxItems: number;
|
|
595
|
+
items: {
|
|
596
|
+
type: string;
|
|
597
|
+
};
|
|
598
|
+
description: string;
|
|
599
|
+
};
|
|
600
|
+
updates: {
|
|
601
|
+
type: string;
|
|
602
|
+
properties: {
|
|
603
|
+
status: {
|
|
604
|
+
type: string;
|
|
605
|
+
enum: string[];
|
|
606
|
+
description: string;
|
|
607
|
+
};
|
|
608
|
+
priority: {
|
|
609
|
+
type: string;
|
|
610
|
+
enum: string[];
|
|
611
|
+
description: string;
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
description: string;
|
|
615
|
+
};
|
|
616
|
+
siteId?: undefined;
|
|
617
|
+
title?: undefined;
|
|
618
|
+
description?: undefined;
|
|
619
|
+
priority?: undefined;
|
|
620
|
+
category?: undefined;
|
|
621
|
+
status?: undefined;
|
|
622
|
+
taskId?: undefined;
|
|
623
|
+
tasks?: undefined;
|
|
480
624
|
};
|
|
481
625
|
required: string[];
|
|
482
626
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EACL,QAAQ,EACR,cAAc,EACd,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,kBAAkB,EAClB,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EACL,QAAQ,EACR,cAAc,EACd,iBAAiB,EACjB,cAAc,EACd,oBAAoB,EACpB,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,qBAAqB,EACtB,MAAM,UAAU,CAAC;AAGlB,OAAO,EACL,QAAQ,EACR,cAAc,EACd,kBAAkB,EAClB,oBAAoB,EACpB,eAAe,EACf,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,UAAU,CAAC;AAGlB,OAAO,EACL,cAAc,EACd,sBAAsB,EACtB,mBAAmB,EACnB,uBAAuB,EACvB,oBAAoB,EACrB,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,uBAAuB,EACvB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,EACxB,mBAAmB,EACpB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EACL,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,YAAY,CAAC;AAGpB,OAAO,EAEL,QAAQ,EACR,cAAc,EACd,iBAAiB,EACjB,cAAc,EACd,oBAAoB,EACpB,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,qBAAqB,EAErB,QAAQ,EACR,cAAc,EACd,kBAAkB,EAClB,oBAAoB,EACpB,eAAe,EACf,mBAAmB,EACnB,qBAAqB,EAErB,cAAc,EACd,sBAAsB,EACtB,mBAAmB,EACnB,uBAAuB,EACvB,oBAAoB,EAEpB,eAAe,EACf,mBAAmB,EACnB,uBAAuB,EACvB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,EACxB,mBAAmB,EAEnB,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,sBAAsB,EACtB,sBAAsB,GACvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAWpB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAoBjD,CAAC"}
|
package/dist/tools/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Exports all tools for the HeySeo MCP server
|
|
4
4
|
*/
|
|
5
5
|
// GSC Tools
|
|
6
|
-
import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, executeQueryGSC, executeTopKeywords, executeTopPages, } from './gsc.js';
|
|
6
|
+
import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory, } from './gsc.js';
|
|
7
7
|
// GA4 Tools
|
|
8
8
|
import { ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources, } from './ga4.js';
|
|
9
9
|
// PageSpeed Tools
|
|
@@ -11,11 +11,11 @@ import { pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAna
|
|
|
11
11
|
// Comparison Tools
|
|
12
12
|
import { comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek, } from './comparison.js';
|
|
13
13
|
// Task Tools
|
|
14
|
-
import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, } from './tasks.js';
|
|
14
|
+
import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks, } from './tasks.js';
|
|
15
15
|
// Re-export everything
|
|
16
16
|
export {
|
|
17
17
|
// GSC
|
|
18
|
-
gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, executeQueryGSC, executeTopKeywords, executeTopPages,
|
|
18
|
+
gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory,
|
|
19
19
|
// GA4
|
|
20
20
|
ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources,
|
|
21
21
|
// PageSpeed
|
|
@@ -23,7 +23,7 @@ pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAnalyzePageS
|
|
|
23
23
|
// Comparison
|
|
24
24
|
comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek,
|
|
25
25
|
// Tasks
|
|
26
|
-
taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, };
|
|
26
|
+
taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks, };
|
|
27
27
|
/**
|
|
28
28
|
* All tool definitions for MCP registration
|
|
29
29
|
*/
|
|
@@ -46,6 +46,7 @@ export const toolCategories = {
|
|
|
46
46
|
heyseo_query_gsc: 'gsc',
|
|
47
47
|
heyseo_top_keywords: 'gsc',
|
|
48
48
|
heyseo_top_pages: 'gsc',
|
|
49
|
+
heyseo_ranking_history: 'gsc',
|
|
49
50
|
heyseo_query_ga4: 'ga4',
|
|
50
51
|
heyseo_landing_pages: 'ga4',
|
|
51
52
|
heyseo_traffic_sources: 'ga4',
|
|
@@ -59,5 +60,7 @@ export const toolCategories = {
|
|
|
59
60
|
heyseo_get_task: 'tasks',
|
|
60
61
|
heyseo_update_task: 'tasks',
|
|
61
62
|
heyseo_delete_task: 'tasks',
|
|
63
|
+
heyseo_bulk_create_tasks: 'tasks',
|
|
64
|
+
heyseo_bulk_update_tasks: 'tasks',
|
|
62
65
|
};
|
|
63
66
|
//# sourceMappingURL=index.js.map
|
package/dist/tools/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,YAAY;AACZ,OAAO,EACL,QAAQ,EACR,cAAc,EACd,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,kBAAkB,EAClB,eAAe,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"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"}
|
package/dist/tools/tasks.d.ts
CHANGED
|
@@ -75,11 +75,73 @@ export declare const deleteTaskSchema: z.ZodObject<{
|
|
|
75
75
|
}, {
|
|
76
76
|
taskId: string;
|
|
77
77
|
}>;
|
|
78
|
+
export declare const bulkCreateTasksSchema: z.ZodObject<{
|
|
79
|
+
siteId: z.ZodString;
|
|
80
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
81
|
+
title: z.ZodString;
|
|
82
|
+
description: z.ZodOptional<z.ZodString>;
|
|
83
|
+
priority: z.ZodDefault<z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>>;
|
|
84
|
+
category: z.ZodDefault<z.ZodOptional<z.ZodEnum<["technical", "content", "links", "ux"]>>>;
|
|
85
|
+
}, "strip", z.ZodTypeAny, {
|
|
86
|
+
title: string;
|
|
87
|
+
priority: "high" | "medium" | "low";
|
|
88
|
+
category: "technical" | "content" | "links" | "ux";
|
|
89
|
+
description?: string | undefined;
|
|
90
|
+
}, {
|
|
91
|
+
title: string;
|
|
92
|
+
description?: string | undefined;
|
|
93
|
+
priority?: "high" | "medium" | "low" | undefined;
|
|
94
|
+
category?: "technical" | "content" | "links" | "ux" | undefined;
|
|
95
|
+
}>, "many">;
|
|
96
|
+
}, "strip", z.ZodTypeAny, {
|
|
97
|
+
siteId: string;
|
|
98
|
+
tasks: {
|
|
99
|
+
title: string;
|
|
100
|
+
priority: "high" | "medium" | "low";
|
|
101
|
+
category: "technical" | "content" | "links" | "ux";
|
|
102
|
+
description?: string | undefined;
|
|
103
|
+
}[];
|
|
104
|
+
}, {
|
|
105
|
+
siteId: string;
|
|
106
|
+
tasks: {
|
|
107
|
+
title: string;
|
|
108
|
+
description?: string | undefined;
|
|
109
|
+
priority?: "high" | "medium" | "low" | undefined;
|
|
110
|
+
category?: "technical" | "content" | "links" | "ux" | undefined;
|
|
111
|
+
}[];
|
|
112
|
+
}>;
|
|
113
|
+
export declare const bulkUpdateTasksSchema: z.ZodObject<{
|
|
114
|
+
taskIds: z.ZodArray<z.ZodString, "many">;
|
|
115
|
+
updates: z.ZodObject<{
|
|
116
|
+
status: z.ZodOptional<z.ZodEnum<["todo", "in_progress", "done"]>>;
|
|
117
|
+
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
118
|
+
}, "strip", z.ZodTypeAny, {
|
|
119
|
+
status?: "todo" | "in_progress" | "done" | undefined;
|
|
120
|
+
priority?: "high" | "medium" | "low" | undefined;
|
|
121
|
+
}, {
|
|
122
|
+
status?: "todo" | "in_progress" | "done" | undefined;
|
|
123
|
+
priority?: "high" | "medium" | "low" | undefined;
|
|
124
|
+
}>;
|
|
125
|
+
}, "strip", z.ZodTypeAny, {
|
|
126
|
+
taskIds: string[];
|
|
127
|
+
updates: {
|
|
128
|
+
status?: "todo" | "in_progress" | "done" | undefined;
|
|
129
|
+
priority?: "high" | "medium" | "low" | undefined;
|
|
130
|
+
};
|
|
131
|
+
}, {
|
|
132
|
+
taskIds: string[];
|
|
133
|
+
updates: {
|
|
134
|
+
status?: "todo" | "in_progress" | "done" | undefined;
|
|
135
|
+
priority?: "high" | "medium" | "low" | undefined;
|
|
136
|
+
};
|
|
137
|
+
}>;
|
|
78
138
|
export type CreateTaskInput = z.infer<typeof createTaskSchema>;
|
|
79
139
|
export type ListTasksInput = z.infer<typeof listTasksSchema>;
|
|
80
140
|
export type GetTaskInput = z.infer<typeof getTaskSchema>;
|
|
81
141
|
export type UpdateTaskInput = z.infer<typeof updateTaskSchema>;
|
|
82
142
|
export type DeleteTaskInput = z.infer<typeof deleteTaskSchema>;
|
|
143
|
+
export type BulkCreateTasksInput = z.infer<typeof bulkCreateTasksSchema>;
|
|
144
|
+
export type BulkUpdateTasksInput = z.infer<typeof bulkUpdateTasksSchema>;
|
|
83
145
|
/**
|
|
84
146
|
* Execute create task tool
|
|
85
147
|
*/
|
|
@@ -100,6 +162,14 @@ export declare function executeUpdateTask(client: HeySeoApiClient, input: Update
|
|
|
100
162
|
* Execute delete task tool
|
|
101
163
|
*/
|
|
102
164
|
export declare function executeDeleteTask(client: HeySeoApiClient, input: DeleteTaskInput): Promise<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Execute bulk create tasks tool
|
|
167
|
+
*/
|
|
168
|
+
export declare function executeBulkCreateTasks(client: HeySeoApiClient, input: BulkCreateTasksInput): Promise<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Execute bulk update tasks tool
|
|
171
|
+
*/
|
|
172
|
+
export declare function executeBulkUpdateTasks(client: HeySeoApiClient, input: BulkUpdateTasksInput): Promise<string>;
|
|
103
173
|
/**
|
|
104
174
|
* Task tool definitions for MCP
|
|
105
175
|
*/
|
|
@@ -138,6 +208,9 @@ export declare const taskTools: ({
|
|
|
138
208
|
};
|
|
139
209
|
status?: undefined;
|
|
140
210
|
taskId?: undefined;
|
|
211
|
+
tasks?: undefined;
|
|
212
|
+
taskIds?: undefined;
|
|
213
|
+
updates?: undefined;
|
|
141
214
|
};
|
|
142
215
|
required: string[];
|
|
143
216
|
};
|
|
@@ -171,6 +244,9 @@ export declare const taskTools: ({
|
|
|
171
244
|
title?: undefined;
|
|
172
245
|
description?: undefined;
|
|
173
246
|
taskId?: undefined;
|
|
247
|
+
tasks?: undefined;
|
|
248
|
+
taskIds?: undefined;
|
|
249
|
+
updates?: undefined;
|
|
174
250
|
};
|
|
175
251
|
required: string[];
|
|
176
252
|
};
|
|
@@ -190,6 +266,9 @@ export declare const taskTools: ({
|
|
|
190
266
|
priority?: undefined;
|
|
191
267
|
category?: undefined;
|
|
192
268
|
status?: undefined;
|
|
269
|
+
tasks?: undefined;
|
|
270
|
+
taskIds?: undefined;
|
|
271
|
+
updates?: undefined;
|
|
193
272
|
};
|
|
194
273
|
required: string[];
|
|
195
274
|
};
|
|
@@ -232,6 +311,107 @@ export declare const taskTools: ({
|
|
|
232
311
|
default?: undefined;
|
|
233
312
|
};
|
|
234
313
|
siteId?: undefined;
|
|
314
|
+
tasks?: undefined;
|
|
315
|
+
taskIds?: undefined;
|
|
316
|
+
updates?: undefined;
|
|
317
|
+
};
|
|
318
|
+
required: string[];
|
|
319
|
+
};
|
|
320
|
+
} | {
|
|
321
|
+
name: string;
|
|
322
|
+
description: string;
|
|
323
|
+
inputSchema: {
|
|
324
|
+
type: string;
|
|
325
|
+
properties: {
|
|
326
|
+
siteId: {
|
|
327
|
+
type: string;
|
|
328
|
+
description: string;
|
|
329
|
+
};
|
|
330
|
+
tasks: {
|
|
331
|
+
type: string;
|
|
332
|
+
minItems: number;
|
|
333
|
+
maxItems: number;
|
|
334
|
+
items: {
|
|
335
|
+
type: string;
|
|
336
|
+
properties: {
|
|
337
|
+
title: {
|
|
338
|
+
type: string;
|
|
339
|
+
minLength: number;
|
|
340
|
+
maxLength: number;
|
|
341
|
+
description: string;
|
|
342
|
+
};
|
|
343
|
+
description: {
|
|
344
|
+
type: string;
|
|
345
|
+
maxLength: number;
|
|
346
|
+
description: string;
|
|
347
|
+
};
|
|
348
|
+
priority: {
|
|
349
|
+
type: string;
|
|
350
|
+
enum: string[];
|
|
351
|
+
default: string;
|
|
352
|
+
description: string;
|
|
353
|
+
};
|
|
354
|
+
category: {
|
|
355
|
+
type: string;
|
|
356
|
+
enum: string[];
|
|
357
|
+
default: string;
|
|
358
|
+
description: string;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
required: string[];
|
|
362
|
+
};
|
|
363
|
+
description: string;
|
|
364
|
+
};
|
|
365
|
+
title?: undefined;
|
|
366
|
+
description?: undefined;
|
|
367
|
+
priority?: undefined;
|
|
368
|
+
category?: undefined;
|
|
369
|
+
status?: undefined;
|
|
370
|
+
taskId?: undefined;
|
|
371
|
+
taskIds?: undefined;
|
|
372
|
+
updates?: undefined;
|
|
373
|
+
};
|
|
374
|
+
required: string[];
|
|
375
|
+
};
|
|
376
|
+
} | {
|
|
377
|
+
name: string;
|
|
378
|
+
description: string;
|
|
379
|
+
inputSchema: {
|
|
380
|
+
type: string;
|
|
381
|
+
properties: {
|
|
382
|
+
taskIds: {
|
|
383
|
+
type: string;
|
|
384
|
+
minItems: number;
|
|
385
|
+
maxItems: number;
|
|
386
|
+
items: {
|
|
387
|
+
type: string;
|
|
388
|
+
};
|
|
389
|
+
description: string;
|
|
390
|
+
};
|
|
391
|
+
updates: {
|
|
392
|
+
type: string;
|
|
393
|
+
properties: {
|
|
394
|
+
status: {
|
|
395
|
+
type: string;
|
|
396
|
+
enum: string[];
|
|
397
|
+
description: string;
|
|
398
|
+
};
|
|
399
|
+
priority: {
|
|
400
|
+
type: string;
|
|
401
|
+
enum: string[];
|
|
402
|
+
description: string;
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
description: string;
|
|
406
|
+
};
|
|
407
|
+
siteId?: undefined;
|
|
408
|
+
title?: undefined;
|
|
409
|
+
description?: undefined;
|
|
410
|
+
priority?: undefined;
|
|
411
|
+
category?: undefined;
|
|
412
|
+
status?: undefined;
|
|
413
|
+
taskId?: undefined;
|
|
414
|
+
tasks?: undefined;
|
|
235
415
|
};
|
|
236
416
|
required: string[];
|
|
237
417
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/tools/tasks.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAQ9D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAgB3B,CAAC;AAGH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;EAK1B,CAAC;AAGH,eAAO,MAAM,aAAa;;;;;;EAExB,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;EAW3B,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;EAE3B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC7D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACzD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/tools/tasks.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAQ9D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAgB3B,CAAC;AAGH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;EAK1B,CAAC;AAGH,eAAO,MAAM,aAAa;;;;;;EAExB,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;EAW3B,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;EAE3B,CAAC;AAGH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAchC,CAAC;AAGH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC7D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACzD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACzE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEzE;;GAEG;AACH,wBAAsB,iBAAiB,CACrC,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,MAAM,CAAC,CAkCjB;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CACpC,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,cAAc,GACpB,OAAO,CAAC,MAAM,CAAC,CAgCjB;AAED;;GAEG;AACH,wBAAsB,cAAc,CAClC,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC,MAAM,CAAC,CA4BjB;AAED;;GAEG;AACH,wBAAsB,iBAAiB,CACrC,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,MAAM,CAAC,CAkCjB;AAED;;GAEG;AACH,wBAAsB,iBAAiB,CACrC,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,eAAe,GACrB,OAAO,CAAC,MAAM,CAAC,CAmBjB;AAED;;GAEG;AACH,wBAAsB,sBAAsB,CAC1C,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,oBAAoB,GAC1B,OAAO,CAAC,MAAM,CAAC,CAyBjB;AAED;;GAEG;AACH,wBAAsB,sBAAsB,CAC1C,MAAM,EAAE,eAAe,EACvB,KAAK,EAAE,oBAAoB,GAC1B,OAAO,CAAC,MAAM,CAAC,CAyBjB;AAED;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4QrB,CAAC"}
|