MCP TypeScript SDK (V2)
    Preparing search index...
    • Parameters

      • options: {
            baseUrl?: URL;
            issuerUrl: URL;
            provider: OAuthServerProvider;
            scopesSupported?: string[];
            serviceDocumentationUrl?: URL;
        }

      Returns {
          authorization_endpoint: string;
          client_id_metadata_document_supported?: boolean;
          code_challenge_methods_supported?: string[];
          grant_types_supported?: string[];
          introspection_endpoint?: string;
          introspection_endpoint_auth_methods_supported?: string[];
          introspection_endpoint_auth_signing_alg_values_supported?: string[];
          issuer: string;
          registration_endpoint?: string;
          response_modes_supported?: string[];
          response_types_supported: string[];
          revocation_endpoint?: string;
          revocation_endpoint_auth_methods_supported?: string[];
          revocation_endpoint_auth_signing_alg_values_supported?: string[];
          scopes_supported?: string[];
          service_documentation?: string;
          token_endpoint: string;
          token_endpoint_auth_methods_supported?: string[];
          token_endpoint_auth_signing_alg_values_supported?: string[];
          [key: string]: unknown;
      }