@heyseo/mcp-server 0.1.3 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +165 -34
- package/dist/index.js +492 -274
- package/dist/index.js.map +1 -1
- package/dist/prompts/index.d.ts.map +1 -1
- package/dist/prompts/index.js +93 -0
- package/dist/prompts/index.js.map +1 -1
- package/dist/resources/index.d.ts +1 -1
- package/dist/resources/index.d.ts.map +1 -1
- package/dist/resources/index.js +135 -4
- package/dist/resources/index.js.map +1 -1
- package/dist/tools/comparison.d.ts +1 -1
- package/dist/tools/index.d.ts +75 -456
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +65 -1
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/indexing.d.ts +94 -0
- package/dist/tools/indexing.d.ts.map +1 -0
- package/dist/tools/indexing.js +99 -0
- package/dist/tools/indexing.js.map +1 -0
- package/dist/tools/insights.d.ts +38 -0
- package/dist/tools/insights.d.ts.map +1 -0
- package/dist/tools/insights.js +58 -0
- package/dist/tools/insights.js.map +1 -0
- package/dist/tools/memory.d.ts +329 -0
- package/dist/tools/memory.d.ts.map +1 -0
- package/dist/tools/memory.js +242 -0
- package/dist/tools/memory.js.map +1 -0
- package/dist/tools/onpage.d.ts +37 -0
- package/dist/tools/onpage.d.ts.map +1 -0
- package/dist/tools/onpage.js +46 -0
- package/dist/tools/onpage.js.map +1 -0
- package/dist/tools/reports.d.ts +74 -0
- package/dist/tools/reports.d.ts.map +1 -0
- package/dist/tools/reports.js +92 -0
- package/dist/tools/reports.js.map +1 -0
- package/dist/tools/serp.d.ts +55 -0
- package/dist/tools/serp.d.ts.map +1 -0
- package/dist/tools/serp.js +47 -0
- package/dist/tools/serp.js.map +1 -0
- package/dist/tools/site.d.ts +42 -0
- package/dist/tools/site.d.ts.map +1 -0
- package/dist/tools/site.js +167 -0
- package/dist/tools/site.js.map +1 -0
- package/dist/tools/sitemaps.d.ts +30 -0
- package/dist/tools/sitemaps.d.ts.map +1 -0
- package/dist/tools/sitemaps.js +44 -0
- package/dist/tools/sitemaps.js.map +1 -0
- package/dist/tools/tasks.d.ts +14 -14
- package/dist/tools/workflows.d.ts +53 -0
- package/dist/tools/workflows.d.ts.map +1 -0
- package/dist/tools/workflows.js +162 -0
- package/dist/tools/workflows.js.map +1 -0
- package/dist/types.d.ts +138 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/api-client.d.ts +55 -1
- package/dist/utils/api-client.d.ts.map +1 -1
- package/dist/utils/api-client.js +126 -1
- package/dist/utils/api-client.js.map +1 -1
- package/dist/utils/response-formatter.d.ts +68 -0
- package/dist/utils/response-formatter.d.ts.map +1 -0
- package/dist/utils/response-formatter.js +128 -0
- package/dist/utils/response-formatter.js.map +1 -0
- package/package.json +2 -1
package/dist/tools/index.d.ts
CHANGED
|
@@ -2,248 +2,62 @@
|
|
|
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
6
|
import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory } from './gsc.js';
|
|
6
7
|
import { ga4Tools, queryGA4Schema, landingPagesSchema, trafficSourcesSchema, executeQueryGA4, executeLandingPages, executeTrafficSources } from './ga4.js';
|
|
7
8
|
import { pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAnalyzePageSpeed, executeBulkPageSpeed } from './pagespeed.js';
|
|
8
9
|
import { comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek } from './comparison.js';
|
|
9
10
|
import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks } from './tasks.js';
|
|
10
|
-
|
|
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, };
|
|
11
19
|
/**
|
|
12
20
|
* All tool definitions for MCP registration
|
|
13
21
|
*/
|
|
14
22
|
export declare const allTools: ({
|
|
15
|
-
name: string;
|
|
16
|
-
description: string;
|
|
17
|
-
inputSchema: {
|
|
18
|
-
type: string;
|
|
19
|
-
properties: {
|
|
20
|
-
siteId: {
|
|
21
|
-
type: string;
|
|
22
|
-
description: string;
|
|
23
|
-
};
|
|
24
|
-
startDate: {
|
|
25
|
-
type: string;
|
|
26
|
-
pattern: string;
|
|
27
|
-
description: string;
|
|
28
|
-
};
|
|
29
|
-
endDate: {
|
|
30
|
-
type: string;
|
|
31
|
-
pattern: string;
|
|
32
|
-
description: string;
|
|
33
|
-
};
|
|
34
|
-
dimensions: {
|
|
35
|
-
type: string;
|
|
36
|
-
items: {
|
|
37
|
-
type: string;
|
|
38
|
-
enum: string[];
|
|
39
|
-
};
|
|
40
|
-
default: string[];
|
|
41
|
-
description: string;
|
|
42
|
-
};
|
|
43
|
-
rowLimit: {
|
|
44
|
-
type: string;
|
|
45
|
-
minimum: number;
|
|
46
|
-
maximum: number;
|
|
47
|
-
default: number;
|
|
48
|
-
description: string;
|
|
49
|
-
};
|
|
50
|
-
filters: {
|
|
51
|
-
type: string;
|
|
52
|
-
items: {
|
|
53
|
-
type: string;
|
|
54
|
-
properties: {
|
|
55
|
-
dimension: {
|
|
56
|
-
type: string;
|
|
57
|
-
enum: string[];
|
|
58
|
-
};
|
|
59
|
-
operator: {
|
|
60
|
-
type: string;
|
|
61
|
-
enum: string[];
|
|
62
|
-
};
|
|
63
|
-
expression: {
|
|
64
|
-
type: string;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
required: string[];
|
|
68
|
-
};
|
|
69
|
-
description: string;
|
|
70
|
-
};
|
|
71
|
-
limit?: undefined;
|
|
72
|
-
keyword?: undefined;
|
|
73
|
-
days?: undefined;
|
|
74
|
-
};
|
|
75
|
-
required: string[];
|
|
76
|
-
};
|
|
77
|
-
} | {
|
|
78
|
-
name: string;
|
|
79
|
-
description: string;
|
|
80
|
-
inputSchema: {
|
|
81
|
-
type: string;
|
|
82
|
-
properties: {
|
|
83
|
-
siteId: {
|
|
84
|
-
type: string;
|
|
85
|
-
description: string;
|
|
86
|
-
};
|
|
87
|
-
limit: {
|
|
88
|
-
type: string;
|
|
89
|
-
minimum: number;
|
|
90
|
-
maximum: number;
|
|
91
|
-
default: number;
|
|
92
|
-
description: string;
|
|
93
|
-
};
|
|
94
|
-
startDate: {
|
|
95
|
-
type: string;
|
|
96
|
-
pattern: string;
|
|
97
|
-
description: string;
|
|
98
|
-
};
|
|
99
|
-
endDate: {
|
|
100
|
-
type: string;
|
|
101
|
-
pattern: string;
|
|
102
|
-
description: string;
|
|
103
|
-
};
|
|
104
|
-
dimensions?: undefined;
|
|
105
|
-
rowLimit?: undefined;
|
|
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;
|
|
139
|
-
};
|
|
140
|
-
required: string[];
|
|
141
|
-
};
|
|
142
|
-
} | {
|
|
143
|
-
name: string;
|
|
144
|
-
description: string;
|
|
145
|
-
inputSchema: {
|
|
146
|
-
type: string;
|
|
147
|
-
properties: {
|
|
148
|
-
siteId: {
|
|
149
|
-
type: string;
|
|
150
|
-
description: string;
|
|
151
|
-
};
|
|
152
|
-
startDate: {
|
|
153
|
-
type: string;
|
|
154
|
-
pattern: string;
|
|
155
|
-
description: string;
|
|
156
|
-
};
|
|
157
|
-
endDate: {
|
|
158
|
-
type: string;
|
|
159
|
-
pattern: string;
|
|
160
|
-
description: string;
|
|
161
|
-
};
|
|
162
|
-
metrics: {
|
|
163
|
-
type: string;
|
|
164
|
-
items: {
|
|
165
|
-
type: string;
|
|
166
|
-
enum: string[];
|
|
167
|
-
};
|
|
168
|
-
default: string[];
|
|
169
|
-
description: string;
|
|
170
|
-
};
|
|
171
|
-
dimensions: {
|
|
172
|
-
type: string;
|
|
173
|
-
items: {
|
|
174
|
-
type: string;
|
|
175
|
-
enum: string[];
|
|
176
|
-
};
|
|
177
|
-
description: string;
|
|
178
|
-
};
|
|
179
|
-
limit: {
|
|
180
|
-
type: string;
|
|
181
|
-
minimum: number;
|
|
182
|
-
maximum: number;
|
|
183
|
-
default: number;
|
|
184
|
-
description: string;
|
|
185
|
-
};
|
|
186
|
-
};
|
|
187
|
-
required: string[];
|
|
188
|
-
};
|
|
189
|
-
} | {
|
|
190
|
-
name: string;
|
|
191
|
-
description: string;
|
|
192
|
-
inputSchema: {
|
|
193
|
-
type: string;
|
|
194
|
-
properties: {
|
|
195
|
-
siteId: {
|
|
196
|
-
type: string;
|
|
197
|
-
description: string;
|
|
198
|
-
};
|
|
199
|
-
limit: {
|
|
200
|
-
type: string;
|
|
201
|
-
minimum: number;
|
|
202
|
-
maximum: number;
|
|
203
|
-
default: number;
|
|
204
|
-
description: string;
|
|
205
|
-
};
|
|
206
|
-
startDate: {
|
|
207
|
-
type: string;
|
|
208
|
-
pattern: string;
|
|
209
|
-
description: string;
|
|
210
|
-
};
|
|
211
|
-
endDate: {
|
|
212
|
-
type: string;
|
|
213
|
-
pattern: string;
|
|
214
|
-
description: string;
|
|
215
|
-
};
|
|
216
|
-
metrics?: undefined;
|
|
217
|
-
dimensions?: undefined;
|
|
218
|
-
};
|
|
219
|
-
required: string[];
|
|
220
|
-
};
|
|
221
|
-
} | {
|
|
222
|
-
name: string;
|
|
223
|
-
description: string;
|
|
224
23
|
inputSchema: {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
24
|
+
[x: string]: unknown;
|
|
25
|
+
type: "object";
|
|
26
|
+
properties?: {
|
|
27
|
+
[x: string]: object;
|
|
28
|
+
} | undefined;
|
|
29
|
+
required?: string[] | undefined;
|
|
30
|
+
};
|
|
31
|
+
name: string;
|
|
32
|
+
description?: string | undefined;
|
|
33
|
+
outputSchema?: {
|
|
34
|
+
[x: string]: unknown;
|
|
35
|
+
type: "object";
|
|
36
|
+
properties?: {
|
|
37
|
+
[x: string]: object;
|
|
38
|
+
} | undefined;
|
|
39
|
+
required?: string[] | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
annotations?: {
|
|
42
|
+
title?: string | undefined;
|
|
43
|
+
readOnlyHint?: boolean | undefined;
|
|
44
|
+
destructiveHint?: boolean | undefined;
|
|
45
|
+
idempotentHint?: boolean | undefined;
|
|
46
|
+
openWorldHint?: boolean | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
execution?: {
|
|
49
|
+
taskSupport?: "optional" | "required" | "forbidden" | undefined;
|
|
50
|
+
} | undefined;
|
|
51
|
+
_meta?: {
|
|
52
|
+
[x: string]: unknown;
|
|
53
|
+
} | undefined;
|
|
54
|
+
icons?: {
|
|
55
|
+
src: string;
|
|
56
|
+
mimeType?: string | undefined;
|
|
57
|
+
sizes?: string[] | undefined;
|
|
58
|
+
theme?: "light" | "dark" | undefined;
|
|
59
|
+
}[] | undefined;
|
|
60
|
+
title?: string | undefined;
|
|
247
61
|
} | {
|
|
248
62
|
name: string;
|
|
249
63
|
description: string;
|
|
@@ -291,174 +105,6 @@ export declare const allTools: ({
|
|
|
291
105
|
};
|
|
292
106
|
required: string[];
|
|
293
107
|
};
|
|
294
|
-
} | {
|
|
295
|
-
name: string;
|
|
296
|
-
description: string;
|
|
297
|
-
inputSchema: {
|
|
298
|
-
type: string;
|
|
299
|
-
properties: {
|
|
300
|
-
siteId: {
|
|
301
|
-
type: string;
|
|
302
|
-
description: string;
|
|
303
|
-
};
|
|
304
|
-
period1Start: {
|
|
305
|
-
type: string;
|
|
306
|
-
pattern: string;
|
|
307
|
-
description: string;
|
|
308
|
-
};
|
|
309
|
-
period1End: {
|
|
310
|
-
type: string;
|
|
311
|
-
pattern: string;
|
|
312
|
-
description: string;
|
|
313
|
-
};
|
|
314
|
-
period2Start: {
|
|
315
|
-
type: string;
|
|
316
|
-
pattern: string;
|
|
317
|
-
description: string;
|
|
318
|
-
};
|
|
319
|
-
period2End: {
|
|
320
|
-
type: string;
|
|
321
|
-
pattern: string;
|
|
322
|
-
description: string;
|
|
323
|
-
};
|
|
324
|
-
includeGA4: {
|
|
325
|
-
type: string;
|
|
326
|
-
default: boolean;
|
|
327
|
-
description: string;
|
|
328
|
-
};
|
|
329
|
-
weeksBack?: undefined;
|
|
330
|
-
type?: undefined;
|
|
331
|
-
};
|
|
332
|
-
required: string[];
|
|
333
|
-
};
|
|
334
|
-
} | {
|
|
335
|
-
name: string;
|
|
336
|
-
description: string;
|
|
337
|
-
inputSchema: {
|
|
338
|
-
type: string;
|
|
339
|
-
properties: {
|
|
340
|
-
siteId: {
|
|
341
|
-
type: string;
|
|
342
|
-
description: string;
|
|
343
|
-
};
|
|
344
|
-
weeksBack: {
|
|
345
|
-
type: string;
|
|
346
|
-
minimum: number;
|
|
347
|
-
maximum: number;
|
|
348
|
-
default: number;
|
|
349
|
-
description: string;
|
|
350
|
-
};
|
|
351
|
-
period1Start?: undefined;
|
|
352
|
-
period1End?: undefined;
|
|
353
|
-
period2Start?: undefined;
|
|
354
|
-
period2End?: undefined;
|
|
355
|
-
includeGA4?: undefined;
|
|
356
|
-
type?: undefined;
|
|
357
|
-
};
|
|
358
|
-
required: string[];
|
|
359
|
-
};
|
|
360
|
-
} | {
|
|
361
|
-
name: string;
|
|
362
|
-
description: string;
|
|
363
|
-
inputSchema: {
|
|
364
|
-
type: string;
|
|
365
|
-
properties: {
|
|
366
|
-
siteId: {
|
|
367
|
-
type: string;
|
|
368
|
-
description: string;
|
|
369
|
-
};
|
|
370
|
-
type: {
|
|
371
|
-
type: string;
|
|
372
|
-
enum: string[];
|
|
373
|
-
default: string;
|
|
374
|
-
description: string;
|
|
375
|
-
};
|
|
376
|
-
period1Start?: undefined;
|
|
377
|
-
period1End?: undefined;
|
|
378
|
-
period2Start?: undefined;
|
|
379
|
-
period2End?: undefined;
|
|
380
|
-
includeGA4?: undefined;
|
|
381
|
-
weeksBack?: undefined;
|
|
382
|
-
};
|
|
383
|
-
required: string[];
|
|
384
|
-
};
|
|
385
|
-
} | {
|
|
386
|
-
name: string;
|
|
387
|
-
description: string;
|
|
388
|
-
inputSchema: {
|
|
389
|
-
type: string;
|
|
390
|
-
properties: {
|
|
391
|
-
siteId: {
|
|
392
|
-
type: string;
|
|
393
|
-
description: string;
|
|
394
|
-
};
|
|
395
|
-
title: {
|
|
396
|
-
type: string;
|
|
397
|
-
minLength: number;
|
|
398
|
-
maxLength: number;
|
|
399
|
-
description: string;
|
|
400
|
-
};
|
|
401
|
-
description: {
|
|
402
|
-
type: string;
|
|
403
|
-
maxLength: number;
|
|
404
|
-
description: string;
|
|
405
|
-
};
|
|
406
|
-
priority: {
|
|
407
|
-
type: string;
|
|
408
|
-
enum: string[];
|
|
409
|
-
default: string;
|
|
410
|
-
description: string;
|
|
411
|
-
};
|
|
412
|
-
category: {
|
|
413
|
-
type: string;
|
|
414
|
-
enum: string[];
|
|
415
|
-
default: string;
|
|
416
|
-
description: string;
|
|
417
|
-
};
|
|
418
|
-
status?: undefined;
|
|
419
|
-
taskId?: undefined;
|
|
420
|
-
tasks?: undefined;
|
|
421
|
-
taskIds?: undefined;
|
|
422
|
-
updates?: undefined;
|
|
423
|
-
};
|
|
424
|
-
required: string[];
|
|
425
|
-
};
|
|
426
|
-
} | {
|
|
427
|
-
name: string;
|
|
428
|
-
description: string;
|
|
429
|
-
inputSchema: {
|
|
430
|
-
type: string;
|
|
431
|
-
properties: {
|
|
432
|
-
siteId: {
|
|
433
|
-
type: string;
|
|
434
|
-
description: string;
|
|
435
|
-
};
|
|
436
|
-
status: {
|
|
437
|
-
type: string;
|
|
438
|
-
enum: string[];
|
|
439
|
-
description: string;
|
|
440
|
-
};
|
|
441
|
-
priority: {
|
|
442
|
-
type: string;
|
|
443
|
-
enum: string[];
|
|
444
|
-
description: string;
|
|
445
|
-
default?: undefined;
|
|
446
|
-
};
|
|
447
|
-
category: {
|
|
448
|
-
type: string;
|
|
449
|
-
enum: string[];
|
|
450
|
-
description: string;
|
|
451
|
-
default?: undefined;
|
|
452
|
-
};
|
|
453
|
-
title?: undefined;
|
|
454
|
-
description?: undefined;
|
|
455
|
-
taskId?: undefined;
|
|
456
|
-
tasks?: undefined;
|
|
457
|
-
taskIds?: undefined;
|
|
458
|
-
updates?: undefined;
|
|
459
|
-
};
|
|
460
|
-
required: string[];
|
|
461
|
-
};
|
|
462
108
|
} | {
|
|
463
109
|
name: string;
|
|
464
110
|
description: string;
|
|
@@ -526,62 +172,6 @@ export declare const allTools: ({
|
|
|
526
172
|
};
|
|
527
173
|
required: string[];
|
|
528
174
|
};
|
|
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
175
|
} | {
|
|
586
176
|
name: string;
|
|
587
177
|
description: string;
|
|
@@ -624,6 +214,35 @@ export declare const allTools: ({
|
|
|
624
214
|
};
|
|
625
215
|
required: string[];
|
|
626
216
|
};
|
|
217
|
+
} | {
|
|
218
|
+
name: string;
|
|
219
|
+
description: string;
|
|
220
|
+
inputSchema: {
|
|
221
|
+
type: string;
|
|
222
|
+
properties: {
|
|
223
|
+
reportId: {
|
|
224
|
+
type: string;
|
|
225
|
+
description: string;
|
|
226
|
+
};
|
|
227
|
+
siteId?: undefined;
|
|
228
|
+
type?: undefined;
|
|
229
|
+
limit?: undefined;
|
|
230
|
+
};
|
|
231
|
+
required: string[];
|
|
232
|
+
};
|
|
233
|
+
} | {
|
|
234
|
+
name: string;
|
|
235
|
+
description: string;
|
|
236
|
+
inputSchema: {
|
|
237
|
+
type: string;
|
|
238
|
+
properties: {
|
|
239
|
+
siteId: {
|
|
240
|
+
type: string;
|
|
241
|
+
description: string;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
required: string[];
|
|
245
|
+
};
|
|
627
246
|
})[];
|
|
628
247
|
/**
|
|
629
248
|
* Tool name to category mapping
|
|
@@ -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,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,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"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"}
|
package/dist/tools/index.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
* Tool Registry
|
|
3
3
|
* Exports all tools for the HeySeo MCP server
|
|
4
4
|
*/
|
|
5
|
+
// Site Tools
|
|
6
|
+
import { siteTools, listSitesSchema, getCurrentSiteSchema, selectSiteSchema, executeListSites, executeSelectSite, executeGetCurrentSite, } from './site.js';
|
|
5
7
|
// GSC Tools
|
|
6
8
|
import { gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory, } from './gsc.js';
|
|
7
9
|
// GA4 Tools
|
|
@@ -12,8 +14,24 @@ import { pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAna
|
|
|
12
14
|
import { comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek, } from './comparison.js';
|
|
13
15
|
// Task Tools
|
|
14
16
|
import { taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks, } from './tasks.js';
|
|
17
|
+
// Reports Tools
|
|
18
|
+
import { reportTools, listReportsSchema, getReportSchema, executeListReports, executeGetReport, } from './reports.js';
|
|
19
|
+
// Indexing Tools
|
|
20
|
+
import { indexingTools, indexingStatusSchema, indexingPagesSchema, submitForIndexingSchema, executeIndexingStatus, executeIndexingPages, executeSubmitForIndexing, } from './indexing.js';
|
|
21
|
+
// Memory Tools
|
|
22
|
+
import { memoryTools, getMemorySchema, updateStrategySchema, recordActionSchema, addLearningSchema, executeGetMemory, executeUpdateStrategy, executeRecordAction, executeAddLearning, } from './memory.js';
|
|
23
|
+
// Insights Tools
|
|
24
|
+
import { insightTools, getInsightsSchema, executeGetInsights, } from './insights.js';
|
|
25
|
+
// On-Page Tools
|
|
26
|
+
import { onpageTools, onpageAuditSchema, executeOnpageAudit, } from './onpage.js';
|
|
27
|
+
// SERP Tools
|
|
28
|
+
import { serpTools, serpSearchSchema, executeSerpSearch, } from './serp.js';
|
|
29
|
+
// Sitemaps Tools
|
|
30
|
+
import { sitemapTools, listSitemapsSchema, executeListSitemaps, } from './sitemaps.js';
|
|
15
31
|
// Re-export everything
|
|
16
32
|
export {
|
|
33
|
+
// Site
|
|
34
|
+
siteTools, listSitesSchema, getCurrentSiteSchema, selectSiteSchema, executeListSites, executeSelectSite, executeGetCurrentSite,
|
|
17
35
|
// GSC
|
|
18
36
|
gscTools, queryGSCSchema, topKeywordsSchema, topPagesSchema, rankingHistorySchema, executeQueryGSC, executeTopKeywords, executeTopPages, executeRankingHistory,
|
|
19
37
|
// GA4
|
|
@@ -23,11 +41,27 @@ pagespeedTools, analyzePageSpeedSchema, bulkPageSpeedSchema, executeAnalyzePageS
|
|
|
23
41
|
// Comparison
|
|
24
42
|
comparisonTools, comparePeriodSchema, findOpportunitiesSchema, weekOverWeekSchema, executeComparePeriod, executeFindOpportunities, executeWeekOverWeek,
|
|
25
43
|
// Tasks
|
|
26
|
-
taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks,
|
|
44
|
+
taskTools, createTaskSchema, listTasksSchema, getTaskSchema, updateTaskSchema, deleteTaskSchema, bulkCreateTasksSchema, bulkUpdateTasksSchema, executeCreateTask, executeListTasks, executeGetTask, executeUpdateTask, executeDeleteTask, executeBulkCreateTasks, executeBulkUpdateTasks,
|
|
45
|
+
// Reports
|
|
46
|
+
reportTools, listReportsSchema, getReportSchema, executeListReports, executeGetReport,
|
|
47
|
+
// Indexing
|
|
48
|
+
indexingTools, indexingStatusSchema, indexingPagesSchema, submitForIndexingSchema, executeIndexingStatus, executeIndexingPages, executeSubmitForIndexing,
|
|
49
|
+
// Memory
|
|
50
|
+
memoryTools, getMemorySchema, updateStrategySchema, recordActionSchema, addLearningSchema, executeGetMemory, executeUpdateStrategy, executeRecordAction, executeAddLearning,
|
|
51
|
+
// Insights
|
|
52
|
+
insightTools, getInsightsSchema, executeGetInsights,
|
|
53
|
+
// On-Page
|
|
54
|
+
onpageTools, onpageAuditSchema, executeOnpageAudit,
|
|
55
|
+
// SERP
|
|
56
|
+
serpTools, serpSearchSchema, executeSerpSearch,
|
|
57
|
+
// Sitemaps
|
|
58
|
+
sitemapTools, listSitemapsSchema, executeListSitemaps, };
|
|
27
59
|
/**
|
|
28
60
|
* All tool definitions for MCP registration
|
|
29
61
|
*/
|
|
30
62
|
export const allTools = [
|
|
63
|
+
// Site
|
|
64
|
+
...siteTools,
|
|
31
65
|
// GSC
|
|
32
66
|
...gscTools,
|
|
33
67
|
// GA4
|
|
@@ -38,11 +72,28 @@ export const allTools = [
|
|
|
38
72
|
...comparisonTools,
|
|
39
73
|
// Tasks
|
|
40
74
|
...taskTools,
|
|
75
|
+
// Reports
|
|
76
|
+
...reportTools,
|
|
77
|
+
// Indexing
|
|
78
|
+
...indexingTools,
|
|
79
|
+
// Memory
|
|
80
|
+
...memoryTools,
|
|
81
|
+
// Insights
|
|
82
|
+
...insightTools,
|
|
83
|
+
// On-Page
|
|
84
|
+
...onpageTools,
|
|
85
|
+
// SERP
|
|
86
|
+
...serpTools,
|
|
87
|
+
// Sitemaps
|
|
88
|
+
...sitemapTools,
|
|
41
89
|
];
|
|
42
90
|
/**
|
|
43
91
|
* Tool name to category mapping
|
|
44
92
|
*/
|
|
45
93
|
export const toolCategories = {
|
|
94
|
+
heyseo_list_sites: 'site',
|
|
95
|
+
heyseo_select_site: 'site',
|
|
96
|
+
heyseo_get_current_site: 'site',
|
|
46
97
|
heyseo_query_gsc: 'gsc',
|
|
47
98
|
heyseo_top_keywords: 'gsc',
|
|
48
99
|
heyseo_top_pages: 'gsc',
|
|
@@ -62,5 +113,18 @@ export const toolCategories = {
|
|
|
62
113
|
heyseo_delete_task: 'tasks',
|
|
63
114
|
heyseo_bulk_create_tasks: 'tasks',
|
|
64
115
|
heyseo_bulk_update_tasks: 'tasks',
|
|
116
|
+
heyseo_list_reports: 'reports',
|
|
117
|
+
heyseo_get_report: 'reports',
|
|
118
|
+
heyseo_indexing_status: 'indexing',
|
|
119
|
+
heyseo_indexing_pages: 'indexing',
|
|
120
|
+
heyseo_submit_for_indexing: 'indexing',
|
|
121
|
+
heyseo_get_memory: 'memory',
|
|
122
|
+
heyseo_update_strategy: 'memory',
|
|
123
|
+
heyseo_record_action: 'memory',
|
|
124
|
+
heyseo_add_learning: 'memory',
|
|
125
|
+
heyseo_get_insights: 'insights',
|
|
126
|
+
heyseo_onpage_audit: 'onpage',
|
|
127
|
+
heyseo_serp_search: 'serp',
|
|
128
|
+
heyseo_list_sitemaps: 'sitemaps',
|
|
65
129
|
};
|
|
66
130
|
//# sourceMappingURL=index.js.map
|