gmail-mcp-cli
Version:
Deploy Gmail MCP Server with 17 AI-powered email tools for Claude Desktop
18 lines (17 loc) • 559 B
TypeScript
/**
* OAuth Helper - Streamlines Gmail API credential setup
* Provides automated guidance and credential handling
*/
export declare class OAuthHelper {
private readonly OAUTH_SCOPES;
setupOAuth(serverPath: string): Promise<void>;
private quickSetup;
private secureSetup;
private manualSetup;
private runAuthorization;
/**
* Alternative method: Download credentials directly from URL
* This could be used if you host a credentials file
*/
downloadCredentials(serverPath: string, url: string): Promise<void>;
}