Dashboard Interact¶
Drive a dashboard form on the user's behalf — fill fields, open the form, click submit, or read current state. Single typed entry point for chat-walkthrough agents; each call is validated against the form's registered FormSchema before anything reaches the frontend. See the brief's structural section for the form_id and field names you can address.
MCP name: dashboard_interact
Category: status
Mutates state (retry policy: manual)
Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
action |
str |
Yes | One of: form_field_set, form_open, form_submit, form_get_state. |
field |
str |
No | Field name (form_field_set only). |
form_id |
str |
Yes | Registered form to address (e.g. 'jobs-add-job'). |
timeout_seconds |
float |
No | Rendezvous timeout for form_submit / form_get_state in seconds. Default 10. Ignored for other actions. |
value |
any |
No | Field value (form_field_set only). Type-checked against the field's declared type in the schema. |