mcp-use TypeScript API
    Preparing search index...

    Interface OpenAPIExcludeRule

    Criteria for excluding generated operations. Fields within one rule are ANDed.

    interface OpenAPIExcludeRule {
        method?:
            | "GET"
            | "HEAD"
            | OpenAPIHttpMethod
            | "DELETE"
            | "TRACE"
            | "PUT"
            | "POST"
            | "OPTIONS"
            | "PATCH";
        operationId?: string
        | RegExp;
        path?: string | RegExp;
        tags?: string[];
    }
    Index
    method?:
        | "GET"
        | "HEAD"
        | OpenAPIHttpMethod
        | "DELETE"
        | "TRACE"
        | "PUT"
        | "POST"
        | "OPTIONS"
        | "PATCH"

    HTTP method to match, case-insensitively.

    operationId?: string | RegExp

    Exact operation ID or regular expression to match.

    path?: string | RegExp

    Exact OpenAPI path template or regular expression to match.

    tags?: string[]

    Match when the operation has any of these tags.