/** * MCP Auth Flow * * High-level OAuth flow management using the MCP SDK's built-in auth functions. */ import { type StoredTokens } from "./mcp-auth.js"; import type { ServerEntry } from "./types.js"; /** Auth status for a server */ export type AuthStatus = "authenticated" | "expired" | "not_authenticated"; /** * Start OAuth authentication flow for a server. * Returns the authorization URL when browser authorization is required. */ export declare function startAuth(serverName: string, serverUrl: string, definition?: ServerEntry): Promise<{ authorizationUrl: string; }>; /** * Complete OAuth authentication with the authorization code. */ export declare function completeAuth(serverName: string, authorizationCode: string): Promise; /** * Perform the complete OAuth authentication flow for a server. * * @param serverName - The name of the MCP server * @param serverUrl - The URL of the MCP server * @param definition - The server definition (optional) * @returns The final auth status */ export declare function authenticate(serverName: string, serverUrl: string, definition?: ServerEntry): Promise; /** * Get a valid access token for a server, refreshing if necessary. * * @param serverName - The name of the MCP server * @param serverUrl - The URL of the MCP server * @returns The valid tokens or null if not authenticated */ export declare function getValidToken(serverName: string, serverUrl: string): Promise; /** * Check the authentication status for a server. * * @param serverName - The name of the MCP server * @returns The current auth status */ export declare function getAuthStatus(serverName: string): Promise; /** * Remove all OAuth credentials for a server. * * @param serverName - The name of the MCP server */ export declare function removeAuth(serverName: string): Promise; /** * Check if OAuth is supported for a server configuration. * OAuth is supported for HTTP servers unless explicitly disabled. * * @param definition - The server definition * @returns True if OAuth is supported */ export declare function supportsOAuth(definition: ServerEntry): boolean; /** * Initialize the OAuth system on startup. * Starts the callback server if there are any OAuth servers configured. */ export declare function initializeOAuth(): Promise; /** * Shutdown the OAuth system. * Stops the callback server and cancels pending auths. */ export declare function shutdownOAuth(): Promise; //# sourceMappingURL=mcp-auth-flow.d.ts.map