HighRemote SSE deployment policy is underspecified
Evidence: src/server-entry.ts starts an HTTP server when --transport sse is selected and logs SSE listening on http://localhost:${opts.port}/sse.
Impact: In container, tunnel, or reverse-proxy deployments, the same command can become remotely reachable. If authenticated write tools are enabled, a connected client can mutate the account.
Fix: Bind explicitly to loopback for local mode or document the current binding behavior. Add README deployment language and a transport/write-mode launch checklist.
MedWrite enablement is safe by code path, but operator confirmation is too implicit
Evidence: Mutation tools are registered only when enableWrite is true, and server-entry.ts refuses write mode without a cookie.
Impact: Operators may not understand that enabling writes lets a connected MCP client mutate a real account.
Fix: Keep write mode omitted or explicitly false in examples. Add a short write-mode checklist to every MCP setup path.
LowCookie readiness should distinguish login from write-token readiness
Evidence: CookieManager.hasLogin() checks dbcl2, while write methods separately require ck.
Impact: Diagnostics can report a cookie as valid even when write actions will fail due to a missing write token.
Fix: Add hasWriteToken() and update doctor output to show login readiness and write readiness separately.