Libraries
Project Libraries provide reviewed, versioned TypeScript utilities to every Function in the selected Project.

Create a Library
- Select New Library.
- Choose a stable slug used by the import specifier.
- Write exported pure TypeScript functions in Monaco.
- Use the export editor to keep the declared API clear.
- Save to create an immutable Library version.
Import a Library from a Function with its project-local module name:
ts
import { normalizeCustomer } from "@mcpops/lib/customer-utils";Deployment resolves the Library version consumed by each Function and pins it into the immutable Project snapshot.