@node-in-layers/mcp-server
    Preparing search index...

    Interface AppOptions

    Subset of ExpressOptions accepted by start() and getApp() on the public API. Currently covers only the jsonBodyParser settings; additional options (routes, middleware) are registered via dedicated methods instead.

    interface AppOptions {
        jsonBodyParser?: { limit?: string; strict?: boolean };
    }
    Index

    Properties

    Properties

    jsonBodyParser?: { limit?: string; strict?: boolean }

    Fine-grained options passed directly to bodyParser.json().

    Type Declaration

    • Optionallimit?: string

      Maximum request body size (e.g. '1mb').

    • Optionalstrict?: boolean

      When false, allows non-object/array JSON at the top level.