Atom eve seo

This commit is contained in:
2026-07-15 18:08:51 +02:00
parent 48e9e2992c
commit 7b81464a1d
665 changed files with 219503 additions and 894 deletions

View File

@@ -0,0 +1,11 @@
import { defineTool } from "eve/tools";
import { listSites } from "../lib/search-console.js";
export default defineTool({
description:
"List the Search Console properties the configured service account can access. Useful to confirm access and the exact property name before querying.",
inputSchema: { type: "object", additionalProperties: false, properties: {} } as const,
async execute() {
return listSites();
},
});

View File

@@ -0,0 +1,15 @@
import { defineTool } from "eve/tools";
import {
querySearchAnalytics,
searchAnalyticsQueryInputSchema,
type SearchAnalyticsQuery,
} from "../lib/search-console.js";
export default defineTool({
description:
"Query Google Search Console Search Analytics for the property: the site's own real clicks, impressions, CTR, and average position by query, page, country, device, and date. First-party ground truth for striking-distance, low-CTR, cannibalization, and decay analysis.",
inputSchema: searchAnalyticsQueryInputSchema,
async execute(input: unknown) {
return querySearchAnalytics(input as SearchAnalyticsQuery);
},
});