Is any of this available now?
Yes. The REST API, scoped tokens, and kiln-mcp shipped in v0.4.0 on 19 August 2026. Editing by clicking the page, inviting editors, and the members area were already there.
Is it safe to let an AI edit my live site?
That's the whole design. A token is scoped to specific pages and fields, every write is sanitized on the server so scripts can't get in, and each change is a Git commit you can review or undo. An agent can't reach anything you didn't hand it.
How fast do changes go live?
A write is a commit, and your host rebuilds from it, usually within about a minute. It's built for content that changes through the day or the week, not for a live data feed that updates every second.
Do I need a database or a schema?
No. Your page's data-cms tags already say what's editable, and that's what the API reads and writes. Same content, same repo, no new moving parts.
Will it work if I self-host?
Yes. Kiln is open source, so the API runs on your own worker. You bear the compute, so there's nothing for us to meter.
How do I connect kiln-mcp?
Mint a scoped token against the worker, then grab the server: git clone https://github.com/kilncms/kiln && npm --prefix kiln/mcp install. Point your MCP client at node kiln/mcp/index.mjs with KILN_WORKER_URL and KILN_API_TOKEN set. Setup notes live in the kiln-mcp README.
Kiln