MCP Server Framework - v1.0.0
    Preparing search index...

    Interface ConfigSource

    Metadata about which config source is active.

    Stored alongside the cached config so the server can log which source was used after the logger is initialized.

    interface ConfigSource {
        dotenvLoaded: boolean;
        format?: ConfigFileFormat;
        path?: string;
        type: "file" | "env";
    }
    Index

    Properties

    dotenvLoaded: boolean

    Whether a .env file was found and loaded

    Format of the config file (only when type is 'file')

    path?: string

    Absolute path to the config file (only when type is 'file')

    type: "file" | "env"

    How the config was loaded