GovTribe

Show option list MCP response

MCP tool response returned by the Show option list MCP tool.

Response Shape

The response includes the validated option-list definition plus initial interactive selection state.

FieldTypeNotes
idstringCaller-provided option-list identifier.
Option-list definition fieldsmixedValidated title, options, display, and behavior fields from the live tool schema.
interactionIdstringGenerated option-list interaction identifier.
kindstringoption_list.
statusstringInitial interaction status, usually pending.
isInteractivebooleanWhether the user can submit a selection.
selectedobject or nullSelected option after user submission. Starts as null.

Follow-up Behavior

Use Interaction state MCP response after the user selects an option.

Example

{
  "id": "award-type-choice",
  "title": "Choose an award type",
  "options": [
    {
      "id": "contracts",
      "label": "Contracts"
    }
  ],
  "interactionId": "option_list:INTERACTION_ID",
  "kind": "option_list",
  "status": "pending",
  "isInteractive": true,
  "selected": null
}