Trello

Lightweight, dependency-free, in-memory fake of the Trello REST API for testing code that talks to the Trello API.

Default port: 4792

Trello authenticates with ?key=<key>&token=<token> query parameters. The fake accepts any non-empty key+token pair. Write parameters may arrive as query params, a JSON body, or a form-urlencoded body — all are merged.

Quick start

import { TrelloServer } from "./services/trello/src/server.js";

const server = new TrelloServer(4792);
await server.start();
// ... run your app/tests ...
await server.stop();
const res = await fetch(
  "http://127.0.0.1:4792/1/cards?key=K&token=T",
  {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({ name: "My card", idList: "<listId>" }),
  }
);
// => 200 { id: <24-hex>, name, idBoard, idList, url, ... }

Access via MCP / preview URL

Point your MCP server / agent tooling at the preview URL printed by the parlel pool (defaults to http://127.0.0.1:4792). Set TRELLO_BASE_URL to that URL and supply any non-empty TRELLO_API_KEY + TRELLO_TOKEN (passed as ?key=&token=).

Implemented operations

All /1/* routes require non-empty key and token query parameters. Resource ids are 24-char hex strings.

Boards

Lists

Cards

Members

Service & inspection

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
Board / list / card CRUD✅ Supported
members/me✅ Supported
24-hex resource ids✅ Supported
Query / JSON / form-urlencoded param merging✅ Supported
Checklists, labels, attachments, actions, webhooks⟳ Roadmap
Nested expansions (?cards=all, ?lists=open)◐ Not modeled
key/token validity✓ By design — Any non-empty credential is accepted — no real secrets needed

Error shapes

Errors return a JSON { message } body.

StatusWhen
400missing required field (e.g. board name, card idList)
401missing key or token
404unknown resource / endpoint
405method not allowed

Manifest

See services/trello/manifest.json:

<!-- 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.

TRELLO_API_KEY=trello_parlel
TRELLO_TOKEN=trello_token_parlel
TRELLO_BASE_URL=http://parlel-bridge:4792
<!-- parlel:testenv:end -->