Home / Type/ ZipResult Type — mcp Architecture

ZipResult Type — mcp Architecture

Architecture documentation for the ZipResult type/interface in zip-repository.ts from the mcp codebase.

Entity Profile

Source Code

src/utils/zip-repository.ts lines 87–99

export interface ZipResult {
  /** Path to the created ZIP file */
  path: string;

  /** Cleanup function to delete the ZIP file */
  cleanup: () => Promise<void>;

  /** Number of files included in the ZIP */
  fileCount: number;

  /** Total size in bytes */
  sizeBytes: number;
}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free