Monitoring tells you what went wrong. Actions prevent it from happening.Documentation Index
Fetch the complete documentation index at: https://handlebar.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Allow
Effect: Tool call executes normally. When to use: Default action when no rules are violated. Operational consequence: Agent continues uninterrupted.Block
Effect: Tool call is rejected. Agent receives a structured denial. When to use: Hard policy violations (e.g., accessing PHI without authorization). Operational consequence: Agent cannot execute the tool call. It must choose a different path or terminate. This is not a warning. This is a wall.Modify
Effect: Tool call parameters are changed before execution. When to use: Enforcing data minimisation, redacting fields, constraining queries. Example: Agent requestsget_patient_record(patient_id=123, fields=["name", "ssn", "diagnosis"]) → Handlebar modifies to fields=["name", "diagnosis"] (removes SSN).
Operational consequence: Agent gets only the data it requires. Compliant by default.