Two things kept being true. Our assistants could describe the backlog but never change
it. And customer feedback lived in a different product from the work it turned into, so
the person who reported a bug never found out it was fixed.
01 Founded 2026
02 32 MCP tools, live
03 One authorization pipeline
01 — Problem one
AI that can only look
Most tools added an LLM to summarise a screen. That is a demo, not a colleague. We wanted
the product itself to be callable, so we shipped a real MCP server — the same 32
operations the interface exposes, over the same permission checks, reachable by whatever
assistant a team already uses.
Collecting feedback is the easy half. The half everyone skips is telling the person it
shipped. So that is automatic here — including for people whose duplicate report got
merged into someone else’s, who are the ones normally dropped on the floor.
A project tool is judged on the boring parts: what happens when two people save at once,
what happens when the email should have gone out, what happens on the ten-thousandth
task. Four choices, made once, that most of the product then inherits.
3.1
One pipeline, three doors
A click in the app, an MCP tool call and a REST request take the same path: same
permission checks, same validation, same activity record. There is no faster, looser way
in, which is why granting an assistant access is a scoping decision rather than a leap of
faith.
3.2
Side effects come out of the database
Emails, notifications, realtime updates and the activity trail are not fired off inline
and hoped for. They are derived from an outbox row written inside the same transaction as
the change itself, then processed separately. If the change committed, the follow-up is
owed; if it rolled back, nothing was ever queued.
3.3
Two edits, no silent loser
Every record carries a version. When two people change the same task at the same moment,
the second save is told it is stale and gets a merge path — rather than the quiet
last-write-wins that makes people distrust a tool without ever being able to prove why.
3.4
Lists page, always
Every list is read with keyset pagination — around twenty rows at a time, with the totals
computed server-side rather than counted from whatever happens to be loaded. A list with
ten thousand tasks opens like an empty one, and the number at the top is right while the
rows are still arriving.
04 — Limits
What we will not pretend
Every gap below is also written into llms.txt, the plain-text
summary answer engines read, so an assistant asked about us cannot infer a capability we
do not have. Finding this out in week two is worse for you than reading it now, and worse
for us.
Not built yet
SOC 2 / ISO 27001
No certification and no report to send. If procurement requires one, we fail that check today.
Uptime SLA
None published. We would rather publish nothing than a number we have not earned the history to stand behind.
Self-hosting
Not a supported, documented product. People ask; the honest answer is not yet.
Native mobile apps
The web app is responsive. There is no App Store or Play Store build.
Bug-bounty payouts
Disclosure is unpaid. We reply to every report, and we say so rather than implying a programme.
Not our claim
Breadth
ClickUp does more things than we do, and will keep doing more things than we do. If the requirement is “one tool for everything the company touches”, that is a real answer and it is not us.
Polish
Linear’s interface is better than ours. We are not going to pretend otherwise in a comparison table and let you discover it in week two.
Scale stories
We are not going to line up customer logos or invent a headcount. The product is young; the argument has to be the product.
Planner.day is for teams who want their assistant to operate the board and their users’
feedback to live in the same system as the work. If that is not the thing you are short
of, one of those tools is the better call — and we would rather say so than waste your
trial.
Have a look
Judge it on the boring parts.
Free while you evaluate. The security posture, including what is missing from it, is
written out in the same tone as this page.