codebuild (parlel)

A zero-dependency, in-process fake of AWS CodeBuild. Speaks the AWS JSON 1.1 wire protocol (X-Amz-Target: CodeBuild_20161006.<Operation>).

FieldValue
Servicecodebuild
Port4742
ProtocolAWS JSON 1.1
HealthGET /_parlel/health
ResetPOST /_parlel/reset

Default connection

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

Supported operations

OperationNotes
CreateProjectStores source/artifacts/environment.
ListProjectsProject name list.
BatchGetProjectsReturns projects + projectsNotFound.
UpdateProjectPatches fields in place.
DeleteProjectRemoves the project.
StartBuildImmediately SUCCEEDED; increments build number.
BatchGetBuildsReturns builds + buildsNotFound.
ListBuildsAll build ids (newest first).
ListBuildsForProjectBuild ids scoped to a project.
StopBuildMarks the build STOPPED.

SDK example

import { CodeBuildClient, StartBuildCommand } from "@aws-sdk/client-codebuild";

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

const out = await cb.send(new StartBuildCommand({ projectName: "my-project" }));
console.log(out.build.buildStatus); // "SUCCEEDED"

Access via MCP / preview URL

Under the parlel pool, reach this service through the MCP gateway and the pool's preview URL.

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
BuildsNo build is actually executed; status is always SUCCEEDED.
PhasesA canned SUBMITTED → BUILD → COMPLETED phase list is returned.
LogsLog group/stream names are synthetic; no log content.
Webhooks / sourceSource is stored but never fetched.
ReportsTest/coverage report APIs not implemented.
<!-- 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:4742
<!-- parlel:testenv:end -->