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

    Interface OpenApiFunctionDescription

    A simplified OpenAPI-style description of a single function, used to generate tool input/output schemas for non-NIL-annotated features.

    interface OpenApiFunctionDescription {
        description?: string;
        input: Record<string, JsonAble>;
        name: string;
        output: Record<string, JsonAble>;
    }
    Index

    Properties

    description?: string

    Optional description shown to the AI client.

    input: Record<string, JsonAble>

    JSON Schema object describing the function's input.

    name: string

    Function name as it appears in the tool listing.

    output: Record<string, JsonAble>

    JSON Schema object describing the function's output.