Show option list MCP tool
Render a selectable option list that can send a user decision back to chat.
- MCP tool name:
Show_Option_List - Returns: Show option list MCP response
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI
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"
}
]
}
}Related articles
- Show option list MCP response: Review the response shape returned by this tool.
- GovTribe AI: Review the GovTribe AI surface where this tool can be called.
Show geo map
Render named marker series and routes in an interactive geo map, with optional clustering, marker styling, and marker selection that can be sent back to chat. Use it for interactive geographic review, not boundary-layer or heatmap analysis.
Show preferences panel
Render a staged preferences editor that can send saved values back to chat.