Skip to main content

Proxy Layer Architecture

The Quint Proxy is a transparent interception layer that wraps around an agent system. It captures every outbound action before it executes, scores it, and either allows, flags, or blocks it in real time.

Three Deployment Modes

Onboarding Path

1

Week 1-2: Shadow Mode

Proxy intercepts and scores everything but blocks nothing. Customer sees risk distribution in dashboard.
2

Week 3-4: Selective Enforcement

Enable blocking for specific high-confidence rules: “Block all external data sends from the support bot.”
3

Week 5+: Full Enforcement

Customer has tuned thresholds, created policies, and trusts scoring. Enable enforcement across all agents.

Latency Budget

ComponentTarget
Event capture + classification< 2ms
Canonical action mapping< 1ms
Subgraph construction< 5ms
Scoring (all 4 layers)< 35ms
Decision + forward/block< 2ms
Total proxy overhead (p95)< 45ms
With LLM fallback< 3s
For context: a typical MCP tool call takes 100-500ms. Quint adds 10-30% overhead.

Data Privacy

What the proxy stores:
  • Event metadata (action, agent, session, timestamps, scores)
  • Data field classifications (“SSN was accessed”) but NOT field values
  • Tool call parameters (sanitized — secrets redacted)
What the proxy does NOT store:
  • Raw query results or API responses
  • Actual PII values
  • LLM conversation content
  • User messages (only hashes for correlation)