list_requests
List the requests on your board, sorted by votes or by newest. The starting point for most agent sessions.
Example call
list_requests({ status: "planned", sort: "votes", limit: 2 })Example response
{
"board": { "slug": "acme-app", "name": "Acme App" },
"requests": [
{
"id": "r_7f3k2m",
"title": "Export invoices as CSV",
"status": "planned",
"votes": 41,
"comments": 6,
"created_at": "2026-06-02T09:14:00.000Z"
},
{
"id": "r_2c9x1p",
"title": "Dark mode for the dashboard",
"status": "planned",
"votes": 27,
"comments": 3,
"created_at": "2026-06-18T15:40:00.000Z"
}
]
}