parlel/efs

A zero-dependency, in-process fake of AWS EFS (Elastic File System). EFS uses the AWS REST-JSON protocol with paths under /2015-02-01, so the real @aws-sdk/client-efs works against it unchanged.

Port4708
ProtocolAWS REST-JSON (e.g. POST /2015-02-01/file-systems)
HealthGET /_parlel/health
ResetPOST /_parlel/reset

Default connection

AWS_ENDPOINT_URL=http://127.0.0.1:4708
AWS_ACCESS_KEY_ID=parlel
AWS_SECRET_ACCESS_KEY=parlel
AWS_REGION=us-east-1

Any SigV4 credentials are accepted (auth is not verified).

Supported operations

OperationRoute
CreateFileSystemPOST /2015-02-01/file-systems
DescribeFileSystemsGET /2015-02-01/file-systems (or /file-systems/{id})
DeleteFileSystemDELETE /2015-02-01/file-systems/{id}
CreateMountTargetPOST /2015-02-01/mount-targets
DescribeMountTargetsGET /2015-02-01/mount-targets?FileSystemId=…

Generated ids: fs-…, fsmt-….

SDK usage example

import { EFSClient, CreateFileSystemCommand, CreateMountTargetCommand } from "@aws-sdk/client-efs";

const efs = new EFSClient({
  endpoint: "http://127.0.0.1:4708",
  region: "us-east-1",
  credentials: { accessKeyId: "parlel", secretAccessKey: "parlel" },
});

const fs = await efs.send(new CreateFileSystemCommand({ CreationToken: "my-token", Tags: [{ Key: "Name", Value: "data" }] }));
await efs.send(new CreateMountTargetCommand({ FileSystemId: fs.FileSystemId, SubnetId: "subnet-123" }));

Access via MCP / preview URL

When running inside a Daytona sandbox, this HTTP service is exposed at an automatically-provisioned preview URL. Point the SDK endpoint at that URL and add the x-daytona-preview-token header on requests.

Surface coverage

This emulator faithfully replicates the API surface most application code and agents exercise. Anything below the supported lines is either an intentional design choice for a fast, zero-cost local emulator (✓ By design) or a candidate for a future release (⟳ Roadmap) — never a silent inaccuracy.

Legend: ✅ fully supported · ◐ accepted (stored, not strictly enforced) · ✓ by design · ⟳ on the roadmap.

AreaLimitation
Data planeNo NFS server — files cannot actually be read or written; SizeInBytes is always 0.
LifecycleFile systems and mount targets become available instantly.
Access pointsCreateAccessPoint, lifecycle/backup policies, and replication are not implemented.
NetworkingMount target ENIs/IPs are synthetic; subnets are not validated against EC2.
AuthSigV4 is accepted but never validated.
PersistenceIn-memory; lost on restart/reset.
<!-- parlel:testenv:start -->

Configuration — test.env

Copy these into your test.env (used by the bridge sidecar flow). Tokens are Parlel's seeded test credentials — any non-empty value is accepted by the emulator, so you rarely need to change them. Swap in real credentials only when pointing at the live service in prod.env.

AWS_ACCESS_KEY_ID=parlel
AWS_SECRET_ACCESS_KEY=parlel
AWS_REGION=us-east-1
AWS_ENDPOINT_URL=http://parlel-bridge:4708
<!-- parlel:testenv:end -->