ndasentry
Anonymous NDA risk analysis for AI agents.
Что умеет
- Preview Nda Risk: Stage an NDA for analysis and return a free risk preview. Accepts a base64-encoded PDF (max 10MB). Returns a partial risk assessment covering the first ~3 pages of the document plus
- Get Nda Report: Retrieve the full NDA risk report for a paid session. Polls /api/check_payment until Stripe webhook confirms payment, then calls /api/results to fetch the analysis. The /api/results en
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Anonymous NDA risk analysis for AI agents. $9 per report. No signup, no account, no data retention.
NDASentry exposes a multi-stage NDA risk analysis pipeline as MCP tools so AI agents can review NDAs on behalf of users — flag risky clauses, return a structured risk report — without an account or document retention.
Two tools:
preview_nda_risk(pdf_base64, filename)— Free regex-based preview. Returns clause-level summary plus a Stripe payment link.get_nda_report(session_token)— Paid full LLM-pipeline report ($9 via Stripe).
Privacy: Documents processed in memory only, never written to disk. Reports cached in RAM for 5 minutes after generation, then deleted. No accounts, no email collection.
Disclaimer: NDASentry is a contract risk screening tool, not a law firm. Output is not legal advice. Consult licensed counsel for binding legal interpretation.
Built by Val Tirman at FrontRange Mountain AI LLC. Contact: frontrangesupport@gmail.com
Список инструментов сервера (2)
Технические названия из tools/list. Нужны только разработчикам.
| preview_nda_risk | Stage an NDA for analysis and return a free risk preview. Accepts a base64-encoded PDF (max 10MB). Returns a partial risk assessment covering the first ~3 pages of the document plus a Stripe Checkout URL the user must complete to unlock the full report via `get_nda_report`. This tool creates session state and a one-time Stripe checkout URL. It is NOT idempotent: each call mints a new session token and a new checkout URL. Args: pdf_base64: The NDA as a base64-encoded PDF string. filename: Optional original filename (for display only). Returns: A dict with: session_token, checkout_url, preview (partial risk findings), and disclaimer. |
| get_nda_report | Retrieve the full NDA risk report for a paid session. Polls /api/check_payment until Stripe webhook confirms payment, then calls /api/results to fetch the analysis. The /api/results endpoint caches the result for 5 minutes so transient retries within that window are idempotent. Polling: 2s interval, 5 minute total cap (150 attempts). Args: session_token: The token returned by `preview_nda_risk`. Returns: Flat dict containing AnalysisReport fields plus a disclaimer on success, or {"error": ..., "message": ..., "disclaimer": ...} on failure. Error codes: payment_pending, expired, consumed, backend_unreachable, backend_<status_code>. |