Data handling guarantees

The one-page answer to “do you host my business data?” — written so it can be checked against the actual code, not just asserted. Referenced from our Privacy Policy and Data Processing Agreement.

What is stored persistently (encrypted, in Postgres)

What is never stored anywhere

Why this holds even on shared server infrastructure

Our hosting platform may reuse a warm server process across a few consecutive requests for speed — that's normal and doesn't create a data-leakage path here, because no request's data is ever stored in a place a later request could read from. One request's data is unreachable the moment that request finishes, regardless of whether the underlying process itself gets reused afterward.

What's outside Waqi's control

Once a redacted response reaches your AI client (Claude, ChatGPT, Cursor, or whichever you've connected), what that client does with it — its own context retention, logging, or training-data policy — is governed by that provider's terms, not ours. Since the data reaching that point has already been redacted, this boundary doesn't carry personal-data risk.

The engineering detail behind this page — the actual request handler, tests, and verification — lives in app/api/mcp/[token]/route.js and SECURITY.md in the Waqi codebase.