Skip to main content
Parameter hooks let you pre-populate tool inputs so agents don’t need to specify them on every call — and optionally lock values so they can’t be overridden.

Pre-fill a parameter

Use Hook_Parameter to set a default value for any tool input. Example — always query a specific Notion database:
“Set the default Notion database to my CRM database”
Example — lock Google Calendar queries to a specific calendar:

Template syntax

For parameters that need dynamic values, use the ${placeholder} template syntax with optional escaping. SQL injection prevention — safely interpolate user input into queries:
The escape field sanitizes the interpolated value before insertion. Supported escape modes: sql, json, url.

Lock vs default

A plain parameter value is a default — the AI can still override it if instructed. To make a value locked (non-overridable), set locked: true:
Use locked parameters for security-critical inputs like database names, account IDs, or organization scopes.

Common use cases

How to configure

Ask the Configurator Agent:
“Set the default GitHub owner to my-org and lock it”
“Pre-fill the PostgreSQL database parameter with analytics_db
Or use manage-profile-data directly with action: update, category: Hook_Parameter.