getBacklog
Retrieve all pending tasks from your backlog to organize and prioritize work items for efficient project management.
Instructions
Get all tasks from the backlog
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/tasks.ts:32-36 (registration)The tool "getBacklog" is registered here, calling brain.getTasks("backlog") as its handler.
server.registerTool( "getBacklog", { description: "Get all tasks from the backlog" }, toolHandler("getBacklog", async () => brain.getTasks("backlog")) );