GovTribe

Show option list MCP tool

Render a selectable option list that can send a user decision back to chat.

Examples

Use an option list when the user should choose from a small set of next actions instead of replying in free text.

Ask the user how to handle a qualified opportunity

{
  "tool": "Show_Option_List",
  "arguments": {
    "id": "opportunity-next-action",
    "title": "Next action",
    "description": "Choose how to handle this opportunity.",
    "summary": "The opportunity appears relevant but needs a capture decision.",
    "options": [
      {
        "id": "create-pursuit",
        "label": "Create pursuit",
        "description": "Start capture workflow in the selected pipeline.",
        "prompt": "Create a pursuit for this opportunity."
      },
      {
        "id": "save-search",
        "label": "Save search",
        "description": "Monitor similar opportunities going forward.",
        "prompt": "Create a saved search for similar opportunities."
      },
      {
        "id": "ignore",
        "label": "Ignore",
        "description": "Do not take action now.",
        "variant": "secondary"
      }
    ]
  }
}