UNPKG

google-search-console-mcp-server

Version:

Model Context Protocol server for Google Search Console API - integrate with Claude Code and Claude Desktop

23 lines 698 B
/** * List Sites Tool * Returns all Search Console sites accessible to the user */ import { OAuth2Client } from '../types/index.js'; export declare const name = "list_sites"; export declare const description = "List all Google Search Console sites accessible to the user"; export declare const inputSchema: { type: string; properties: {}; required: never[]; }; /** * Handler for listing Search Console sites * Retrieves all sites the authenticated user has access to */ export declare function handler(args: Record<string, never>, authClient: OAuth2Client): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=list-sites.d.ts.map