mcp-use TypeScript API
    Preparing search index...

    Interface ExternalViewManifestEntry

    External view entry loaded through stylesheet and module URLs.

    Production builds use view-relative asset paths (assets/…) served from ${basePath}/_mcp-use/views/<name>/, or full URLs after an MCP_ASSETS_URL rewrite. Dev uses origin-absolute Vite paths for HMR and Fast Refresh.

    interface ExternalViewManifestEntry {
        css: string[];
        entry: string;
        kind: "external";
    }
    Index
    css: string[]

    Stylesheet URL paths, using the same path rules as ExternalViewManifestEntry.entry.

    entry

    entry: string

    Module entry path. Dev: origin-absolute Vite URL (/…). Production: view-relative path under .mcp-use/build/views/<name>/ (assets/…).

    kind: "external"

    Discriminant for the external-module shape.