PromptShuttle

list_runs

Lists recent ShuttleRequests (LLM invocations) for debugging. Optionally filter by flow name. Returns up to 50 recent runs.

Remote revuo:promptshuttle

Other tools also called list_runs? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "flowName": {
      "description": "Filter by flow name (optional)",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "limit": {
      "description": "Max results to return (default 20, max 50)",
      "type": "integer",
      "default": 20
    }
  }
}