fill_secret
Securely type environment variable values into form fields without exposing secrets in conversation or tool parameters. Reads directly from .env to the target input.
Instructions
Type a secret value from .env into a form field without exposing it in the conversation.
The server reads the value from the .env file and types it directly into the target element. The actual value never appears in tool parameters or responses.
Args: session_id: Active session ID. env_var: Name of the environment variable in .env (e.g., 'APP_PASSWORD'). selector: CSS selector of the target input field. frame_context: Iframe selector path for the target element. Use 'main' or omit for top-level. clear_first: Clear the field before typing. Default: true. wait_after: Milliseconds to wait after typing. Default: 500.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ||
| env_var | Yes | ||
| selector | Yes | ||
| frame_context | No | ||
| clear_first | No | ||
| wait_after | No |