mcp-use TypeScript API
    Preparing search index...

    Interface InlineViewManifestEntry

    Manifest entry whose JS and CSS are embedded in the synthesized HTML document.

    The production CLI emits this shape for mcp-use build --inline.

    interface InlineViewManifestEntry {
        css: string;
        js: string;
        kind: "inline";
    }
    Index
    css: string

    Aggregated stylesheet text embedded in a <style> element (empty string when the view has no CSS).

    js: string

    Minified ES module source embedded in the generated view document's <script type="module"> element.

    kind: "inline"

    Discriminant for the embedded bundle shape.