enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface FrontmatterSetArgs

    Arguments for frontmatterSet.

    Setting a key to null deletes it (not the same as setting to YAML null). This is a deliberate convenience choice — agents typically don't need to write literal YAML null, but they often need to remove a key.

    interface FrontmatterSetArgs {
        dry_run?: boolean;
        path?: string;
        set: Record<string, unknown>;
        title?: string;
    }
    Index

    Properties

    dry_run?: boolean

    Preview the diff without writing. Default false.

    path?: string

    Vault-relative path of the target note.

    set: Record<string, unknown>

    Keys to set. Setting a key to null deletes it.

    title?: string

    Title (basename without .md) of the target note.