google-search-console-mcp-server
Version:
Model Context Protocol server for Google Search Console API - integrate with Claude Code and Claude Desktop
32 lines • 858 B
TypeScript
/**
* Get Sitemaps Tool
* Retrieve sitemap information for a site
*/
import { OAuth2Client } from '../types/index.js';
export declare const name = "get_sitemaps";
export declare const description = "Retrieve sitemap information for a Google Search Console site";
export declare const inputSchema: {
type: string;
properties: {
siteUrl: {
type: string;
description: string;
};
};
required: string[];
};
interface GetSitemapsRequest {
siteUrl: string;
}
/**
* Handler for retrieving sitemap information
* Returns sitemap status, errors, warnings, and indexing statistics
*/
export declare function handler(args: GetSitemapsRequest, authClient: OAuth2Client): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export {};
//# sourceMappingURL=get-sitemaps.d.ts.map