Zoom

Lightweight, dependency-free, in-memory fake of the Zoom API v2 for testing code that creates meetings and looks up users.

Default port: 4797

Quick start

import { ZoomServer } from "./services/zoom/src/server.js";

const server = new ZoomServer(4797);
await server.start();
// ... run your app/tests ...
await server.stop();

Point any Zoom client at http://127.0.0.1:4797. Obtain a token first (any value works as a bearer token), or call the OAuth endpoint:

const tokenRes = await fetch("http://127.0.0.1:4797/oauth/token", {
  method: "POST",
  headers: { Authorization: "Basic " + Buffer.from("clientId:clientSecret").toString("base64") },
});
const { access_token } = await tokenRes.json();

const meeting = await fetch("http://127.0.0.1:4797/v2/users/me/meetings", {
  method: "POST",
  headers: { Authorization: `Bearer ${access_token}`, "Content-Type": "application/json" },
  body: JSON.stringify({ topic: "Standup", type: 2, duration: 30 }),
}).then((r) => r.json());
// meeting.id, meeting.join_url, meeting.start_url

Implemented operations

All /v2/* routes require Authorization: Bearer <token> (any non-empty token accepted). State is in-memory and ephemeral.

Service & inspection operations (parlel extensions)

Access via MCP / preview URL

When run inside a Daytona sandbox, this HTTP service is auto-exposed at the sandbox's preview URL. Send requests to the preview URL with the x-daytona-preview-token header to reach the service from outside the sandbox. The MCP layer surfaces the same endpoints described above.

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.

FeatureStatus
OAuth token issuance✅ Issues opaque tokens (not validated)
Meeting CRUD (create/list/get/update/delete)✅ Supported
User lookup (me, by id, list)✅ Supported
Deterministic meeting ids / urls✅ Supported
Bearer token validity / scope enforcement✓ By design — Any non-empty credential is accepted — no real secrets needed
Webinars, recordings, registrants, reports⟳ Roadmap
Real meeting hosting / join✓ By design — Intentionally unsupported (fake only)
Rate limiting (429)✓ By design — Never throttles — local tests run at full speed, zero cost
<!-- 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.

ZOOM_ACCESS_TOKEN=parlel
ZOOM_BASE_URL=http://parlel-bridge:4797
<!-- parlel:testenv:end -->