SDK examples
There's no official npm / pypi package yet. Instead, drop-in
reference clients live under
/mykal/developer-examples/. Each one is small,
idiomatic, and implements tasks CRUD + scheduling โ enough to
copy/paste into your project.
Reference clients
Python
Thin async client around httpx.AsyncClient. CRUD, tree, bulk-import, scheduling, webhooks.
Node + TypeScript
ESM. Native fetch. Ships with typed request/response shapes.
Go
Idiomatic net/http client with context.Context support.
curl recipes
Pure curl commands for every common operation. Copy/paste friendly.
Python
Install deps, set env, run.
bash
cd python-client
pip install -r requirements.txt
cp .env.example .env
# fill in MYKAL_BASE + MYKAL_TOKEN
./demo.sh
Node / TypeScript
bash
cd node-client
npm install
cp .env.example .env
npm run demo
Go
bash
cd go-client
cp .env.example .env
go run ./cmd/demo
curl recipes
A single markdown file covering every common operation โ curl-recipes.md.