(connection, direction) until the config is fixed — the gateway never relays unfiltered traffic.
List filters
dome_guards_list_filters
List the workspace’s Filters, each with its active version and config.
Get filter
dome_guards_get_filter
Fetch one Filter’s active version and config.
List filter versions
dome_guards_list_filter_versions
List a Filter’s version history, newest first. Rollback-produced versions cite their source version id.
Create filter
dome_guards_create_filter
Create a Filter — its first active version. Supply the config via the convenience params (text-only) or config_json (any kind).
The convenience params build at most two components — a
redact component and a block component, redact ordered first — and only produce text Filters. Pass config_json to author a JSON Filter or a multi-component text chain.
JSON Filter config
BLOCK withholds the whole message. OMIT removes the key and value. REDACT rewrites the value with a redaction sentinel. When multiple actions target the same key: BLOCK > OMIT > REDACT.
Update filter
dome_guards_update_filter
Edit metadata in place (new_name, description), or deploy a new active version by passing any config param. History is preserved.
Pass at least one of
new_name, description, or a config param.
Rollback filter
dome_guards_rollback_filter
Roll a Filter back to an earlier version. The target version’s config is copied forward into a new active version.
Delete filter
dome_guards_delete_filter
Hard-delete a Filter and its connection assignments.
List model connection filters
dome_model_guards_filters_list
List the text Filters assigned to a model connection, in chain order, grouped by direction.
Set model connection filters
dome_model_guards_filters_set
Replace the entire ordered Filter chain for one direction on a model connection. Only text-kind Filters may be assigned.
response filters completions the agent receives. request filters the outbound prompt before dispatch to the model provider — a match can redact or block the call.
List tool connection filters
dome_tool_guards_filters_list
List the JSON Filters assigned to an MCP server (tool) connection, in chain order, grouped by direction.
Set tool connection filters
dome_tool_guards_filters_set
Replace the entire ordered Filter chain for one direction on a tool connection. Only json-kind Filters may be assigned.
request filters run over tool arguments before the call reaches the upstream MCP server — matched fields are redacted or omitted, or the whole call is blocked. response filters run over the tool result before the agent sees it.
Next steps
Create and assign Filters from Govern. Catalogs cover windows and path syntax:- Configure Guards
- Guards concept
- Guards reference