@mcp-z/oauth-google
    Preparing search index...

    Interface GoogleAuthProvider

    Supplies Google access tokens on demand.

    The whole contract between this package and a Google API client. It mirrors @mcp-z/oauth-microsoft, whose providers satisfy Graph's AuthenticationProvider with the same single method, and it is why this package needs no Google SDK of its own.

    interface GoogleAuthProvider {
        getAccessToken: () => Promise<string>;
    }
    Index
    getAccessToken: () => Promise<string>

    Resolves a currently-valid access token, refreshing if the provider needs to.