mcp-use TypeScript API
    Preparing search index...

    Interface Auth0OAuthProviderOptions

    Configures Auth0 JWT verification and protected-resource metadata.

    interface Auth0OAuthProviderOptions {
        domain: string | URL;
        requiredScopes?: readonly string[];
        resource?: string | URL;
        resourceName?: string;
        scopesSupported?: readonly string[];
        serviceDocumentationUrl?: URL;
    }

    Hierarchy (View Summary)

    Index
    domain: string | URL

    Auth0 tenant domain or issuer URL.

    requiredScopes?: readonly string[]

    Endpoint-wide scopes enforced by the SDK bearer gate.

    resource?: string | URL

    Full canonical public MCP endpoint URL.

    resourceName?: string

    Human-readable name advertised by protected-resource metadata.

    scopesSupported?: readonly string[]

    Scopes advertised by protected-resource metadata.

    serviceDocumentationUrl?: URL

    Documentation URL advertised by protected-resource metadata.