Datalayer VS Code Extension - v0.0.4
    Preparing search index...

    Interface InsertCellMessage

    Insert cell into notebook (MCP tool support)

    interface InsertCellMessage {
        body: {
            cellIndex?: number;
            cellSource: string;
            cellType: "code" | "markdown";
        };
        type: "insert-cell";
    }
    Index

    Properties

    Properties

    body: { cellIndex?: number; cellSource: string; cellType: "code" | "markdown" }
    type: "insert-cell"