UNPKG

google-search-console-mcp-server

Version:

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

17 lines 548 B
/** * Google OAuth 2.0 Authentication */ import { OAuth2Client } from '../types/index.js'; /** * Create and configure OAuth2 client */ export declare function createAuthClient(): OAuth2Client; /** * Get authorization URL for initial setup */ export declare function getAuthUrl(oauth2Client: OAuth2Client): string; /** * Exchange authorization code for tokens */ export declare function getTokensFromCode(oauth2Client: OAuth2Client, code: string): Promise<import("google-auth-library").Credentials>; //# sourceMappingURL=google-auth.d.ts.map