Cheap Labor
Abstract
Cheap Labor exists because Codex usage is a limited pool — and most of what a coding agent does is not writing code. Reading files, exploring the repo, planning, and reviewing diffs all burn the Codex allowance without ever writing code.
Then came the key realization: ChatGPT and Codex usage are counted separately — two independent allowances. So we decided to split the work: ChatGPT does all the thinking on its own allowance, and Codex is spent only on real implementation.
That's the whole idea — a local MCP server joined over a Secure MCP Tunnel: ChatGPT on the web drives a Codex CLI on your machine, over your local repo, with a single @cheap-labor trigger.
Built With
Cheap Labor is built with a deliberately small, cross-platform stack:
Runtime: Node.js (>= 20) — bridge server runtime
Language: TypeScript — all bridge code
Protocol: MCP SDK (
@modelcontextprotocol/sdk) — stdio MCP server + clientValidation: zod — tool argument schemas
Executor: Codex CLI (
codex mcp-server) — spawned child MCP client for exploration and implementationConnectivity: Secure MCP Tunnel (
tunnel-client) — private, outbound-only link between ChatGPT web and the local server
Prerequisites
macOS or Linux with Node.js >= 20 + npm
git
A paid ChatGPT account with developer mode
Codex CLI, logged in (
codex login)tunnel-client— installed during setup: macOS via Homebrew; Linux via the GitHub releases binary (linux-amd64/arm64) on your PATHA Secure MCP Tunnel + runtime API key from the OpenAI platform (the installer points you to the right pages)
Installation
Jump to: 1. Clone & install → 2. Use it
Clone the repo and move into it:
git clone https://github.com/psrisuphan/cheap-labor.git cd cheap-laborRun the installer — it installs deps, builds the bridge, writes your tunnel profile, validates all 25 tools, and walks you through connecting the app to ChatGPT web:
./scripts/install.sh
Use It
Start the tunnel — keep it running while you use cheap-labor:
./scripts/tunnel.sh start # stop: ./scripts/tunnel.sh stopOpen a new ChatGPT chat and type
@cheap-labor(or whatever you named the app/plugin when creating it).Confirm the project directory when asked — the session is armed.
Approval Mode — defaults to
normal(asks you before running every command). Switch to auto-approve (GPT decides the risk) with@cheap-labor, switch to auto-approve.
Uninstall
./scripts/uninstall.shCleans up everything the script can reach: legacy MCP registration, the tunnel daemon, .codex-bridge/ state in every initialized project, the tunnel profile and stored API key, and the build artifacts. Three prompts (press Enter for the recommended answer, n to keep). Afterwards it prints a manual cleanup guide for the parts only you can reach: the ChatGPT app connection, the Platform tunnel, the runtime API key, and the project folder.
How It Works
The bridge is dormant until armed. While dormant, the server ships only a short "ignore these tools" notice as its instructions, so unrelated prompts are answered without the bridge ever being considered. The full workflow rules live in the init tool's return payload and enter the conversation only after arming.
The trigger is the invocation itself — no prompt monitoring, no tag syntax, no phrase scanning:
The user invokes cheap-labor by typing
@cheap-labor. That's the only trigger.ChatGPT asks which project you want, resolves it (
find_projectsfor fuzzy names,create_projectfor new directories), confirms the exact path with you, then arms the session —init(project)(orcreate_projectdirectly for a brand-new directory) and receives asession_token.Every other tool refuses to run without a valid
session_token— a hard backstop that also blocks accidental use outside the workflow.
The Workflow
Arm the session —
@cheap-labor+ confirm the project →initreturns the token.Understand —
git_status,list_tree,read_file,grep(all free).Plan in detail — ChatGPT writes
PLAN.md/SPEC.md/TASKS.mdinto the repo's.codex-bridge/folder withplan_write. The plan is exact step-by-step instructions: which files to create/edit, what each change should be, which commands to run, and how to verify.Small edits, done directly —
write_file/edit_filehandle one-file changes for free.Delegate heavy work —
implementhands the plan to Codex, which executes the steps literally, runs builds/tests, fixes what breaks, and returnsIMPLEMENTATION COMPLETE.Review — ChatGPT reads the returned
git diffand sends targeted corrections back through the same loop.
Features
One-Trigger Activation:
@cheap-laborin any ChatGPT chat is the only trigger; the bridge stays dormant (zero model attention) until invoked — no prompt monitoring, no tag syntax, no phrase scanning.Three-Bucket Command Safety: provably-safe read-only commands (git status/log/diff, ls, cat, grep, …) run freely; dangerous ones (file deletes, git rewrites, network installs, interpreter one-liners) always require your explicit approval; everything else depends on the approval mode — ask first (
normal, default) or let ChatGPT judge safe commands itself (auto). Switch modes in chat any time withset_approval_mode.Built-In Safety Rails: project path scoping, secret redaction, checkpoints before every heavy run, and local-only commits that never push.
Cross-Platform: macOS and Linux, no public ports, outbound-only tunnel.
Tools Reference
Free bridge tools (deterministic local I/O, no Codex cost):
Tool | Purpose |
| Arm the session for a project (the single entry point); returns the |
| Directory structure, depth-limited |
| File contents, line-ranged, size-capped, secrets redacted ( |
| Regex search with path-aware include/exclude globs ( |
| Repo state + the review loop (untracked files surfaced) |
| Three-bucket execution (tests, build, typecheck): safe allowlist runs freely; dangerous commands always need your approval; the rest follows the approval mode. Output secrets redacted ( |
| Switch the global approval mode — |
| Read current bridge settings (e.g. the approval mode) |
| Create a new file directly (refuses to overwrite) |
| Exact-match edit of an existing file (content-based stale guard) |
| Batch edits/writes after validating every guard before application |
| Snapshot HEAD + working tree for rollback (auto before |
| Restore to a checkpoint (user-confirmed; itself undoable) |
| Stage + commit locally with a user-approved message; refuses existing staged work and never pushes |
| List recorded checkpoints |
| Resolve fuzzy names to candidate paths (shallow, well-known locations) |
| Create a new project directory (no git init); returns a |
| Manage |
Codex-backed tools (spend the Codex pool):
Tool | Purpose |
| Read-only Codex session for questions free tools can't answer (model upgrade per-call with your confirmation) |
| Workspace-write Codex on the current plan; returns summary + |
| Continue a session by thread id (approval veto loop, follow-ups); bound to the project that created it |
Safety Model
implement/deep_explorealways pass an explicit sandbox (workspace-write/read-only) — neverdanger-full-access.Fixed Codex model — every Codex call pins
gpt-5.6-lunawithmediumreasoning and Fast Mode off, passed as per-call overrides. The bridge never writes to~/.codex/config.toml. The one exception:implement/deep_exploreaccept a stronger model (e.g.gpt-5.6-sol), but the bridge refuses it unless the call passesmodel_confirmed: true— set only after you explicitly agree to that exact model in chat. Per-call: each non-default model run needs its own confirmation.Auto-safe approvals — Codex shell approvals surface as MCP elicitations: commands on the provably-safe allowlist are auto-approved; dangerous ones (writes, network, git mutations, interpreter one-liners) are always declined — in
automode too — and recorded so ChatGPT relays them to you for a veto. The veto is executed withcodex_reply.Approval modes —
run_commandbuckets every command. The safe allowlist (git status/log/diff/show/rev-parse,ls,cat,pwd,echo,grep,rg,sort,uniq,wc,head,tail,printf,date) always runs. Dangerous commands (file deletion/overwrite, git rewrites, network installs, interpreter one-liners) always require your approval — the bridge refuses them withoutapproved: true. Everything else follows the mode:normal(default) asks you first;autolets ChatGPT judge safe commands itself but still makes it ask you for dangerous ones. Change it any time withset_approval_mode— it applies to every chat immediately.write_fileonly creates new files;edit_fileonly edits existing ones via exact-match replacement (stale/ambiguous matches write nothing);edit_packvalidates the full batch before applying it. All cap sizes and refuse binary files.Ship mode —
checkpointsnapshots HEAD + working tree (taken automatically before everyimplement);rollbackrestores a checkpoint (itself undoable);git_commitrefuses a non-empty index, then commits locally with a user-approved message. Push/pull/reset/rebase/checkout are never exposed.Bridge tools refuse paths outside the session-approved project directory.
Git-backed tools require the approved project to be the repository root, preventing nested projects from affecting sibling directories.
read_file/grep/git_diff/run_commandredact known secret patterns by default; passredact_secrets: falsewhen a task genuinely needs the raw content.
Project Structure
cheap-labor/
├── assets/ # Logo / icons
├── scripts/ # Installer, uninstaller, tunnel control, setup
│ ├── install.sh # All-in-one installer
│ ├── uninstall.sh # Clean uninstaller
│ ├── tunnel-setup.sh # Writes the tunnel-client profile
│ ├── tunnel.sh # start / stop / restart / status / logs the tunnel daemon
│ └── setup.mjs # Prerequisite check
├── src/ # Bridge MCP server
│ ├── index.ts # Server entry, tool registration, server instructions
│ ├── git.ts # Exact repository-root boundary for Git-backed tools
│ ├── safety.ts # Project scoping, redaction, risk classification, command buckets
│ ├── projects.ts # Session approvals, ledger, find/create
│ ├── planstore.ts # .codex-bridge/ I/O
│ ├── settings.ts # Approval mode (normal / auto)
│ ├── approvals.ts # Auto-safe policy
│ ├── skips.ts # Shared directory-skip list
│ └── tools/ # context, command, codex, deepExplore,
│ # implement, edit, plans, ship
├── tests/ # Node test suite
├── dist/ # Build output (gitignored)
└── package.jsonTesting
To run the unit test suites:
npm run typecheck # tsc --noEmit
npm test # node --test (tsx)
npm run build # tsc → dist/Local Data & Logs
Cheap Labor stores its tunnel profile, runtime API key, and daemon logs locally, outside the project directory:
macOS / Linux:
~/.config/tunnel-client/
Inside this directory you will find:
cheap-labor.yaml— thetunnel-clientprofile (contains the tunnel id).cheap-labor.key— the runtime API key, chmod 600, never committed.cheap-labor.log— the tunnel daemon log.
Bridge settings (the approval mode) live in ~/.codex/cheap-labor-settings.json (chmod 600), and the list of initialized projects in ~/.codex/cheap-labor-approved-projects.json (read by the uninstaller to purge .codex-bridge/ state).
Plans and handoff files are written into each project's .codex-bridge/ folder at runtime (gitignored). Checkpoint metadata is stored under Git's private directory and snapshots are pinned under refs/bridge-checkpoints/. Codex's own configuration and auth live in ~/.codex/.
License
This project is licensed under the MIT License. See the LICENSE file for the full license text.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/psrisuphan/cheap-labor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server