getTodayTasks
Retrieve all tasks scheduled for today from your structured knowledge base to organize daily priorities and track progress.
Instructions
Get all tasks from today's task list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/tasks.ts:26-30 (registration)Registration of the 'getTodayTasks' tool in the MCP server using the 'toolHandler' helper.
server.registerTool( "getTodayTasks", { description: "Get all tasks from today's task list" }, toolHandler("getTodayTasks", async () => brain.getTasks("today")) );