Skip to content

vault_status

vault_status returns the current state of the ov mcp serve session. Useful for verifying the bridge is running correctly, confirming which app is active, and checking interceptor activity.


None.


{
"unlocked": true,
"intercept_mode": "block",
"intercepted_count": 0,
"session_age_seconds": 142
}
FieldDescription
unlockedtrue if the session is authenticated and the KEK is loaded
intercept_modeCurrent interceptor mode: block (default) or warn
intercepted_countNumber of potential secrets intercepted this session
session_age_secondsSeconds since ov mcp serve was started

Call vault_status at the start of a session to confirm the bridge is running before issuing any vault_run calls:

“Let me verify the vault is unlocked before we start.” → calls vault_status → confirms unlocked: true → proceeds with vault_run


If intercepted_count is greater than 0, something triggered the inbound interceptor during this session — either a command that could exfiltrate injected secrets was blocked, or a raw secret pattern was detected in MCP traffic. Check your audit log for details.