GovTribe

Show question flow MCP response

MCP tool response returned by the Show question flow MCP tool.

Response Shape

The response includes the validated question-flow definition plus initial answer state.

FieldTypeNotes
idstringCaller-provided question-flow identifier.
Question-flow definition fieldsmixedValidated question, step, label, and behavior fields from the live tool schema.
interactionIdstringGenerated question-flow interaction identifier.
kindstringquestion_flow.
statusstringInitial interaction status, usually pending.
isInteractivebooleanWhether the user can submit answers.
answersobject or nullSubmitted answers. Starts as null.

Follow-up Behavior

Use Interaction state MCP response after the user completes the guided flow.

Example

{
  "id": "requirements-flow",
  "title": "Requirements review",
  "questions": [
    {
      "id": "deadline",
      "label": "What is the response deadline?"
    }
  ],
  "interactionId": "question_flow:INTERACTION_ID",
  "kind": "question_flow",
  "status": "pending",
  "isInteractive": true,
  "answers": null
}