mcp-use TypeScript API
    Preparing search index...

    Interface ClerkOAuthProviderOptions

    Configures Clerk JWT verification and protected-resource metadata.

    interface ClerkOAuthProviderOptions {
        audience?: string;
        frontendApiUrl: string | URL;
        requiredScopes?: readonly string[];
        resource?: string | URL;
        resourceName?: string;
        scopesSupported?: readonly string[];
        serviceDocumentationUrl?: URL;
    }

    Hierarchy (View Summary)

    Index
    audience?: string

    Expected Clerk access-token audience, when the application emits one.

    frontendApiUrl: string | URL

    Clerk Frontend API URL used as the token issuer.

    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.