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

    Interface CanvasSummary

    Lightweight summary of a .canvas file in the vault.

    Includes node and edge counts so an agent can pick which canvas to dive into without parsing each file in full.

    interface CanvasSummary {
        edge_count: number;
        mtime: string;
        name: string;
        node_count: number;
        path: string;
        size_bytes: number;
    }
    Index

    Properties

    edge_count: number

    Total edges in the canvas. 0 on parse failure.

    mtime: string

    ISO-8601 modification timestamp.

    name: string

    .canvas-stripped basename.

    node_count: number

    Total nodes in the canvas. 0 on parse failure.

    path: string

    Vault-relative path.

    size_bytes: number

    File size in bytes (0 if the file failed to parse).