list_tasks
Retrieve tasks from Remember The Milk with filtering options for due dates, tags, priorities, lists, and completion status.
Instructions
List tasks with optional filtering.
Args: filter: RTM filter string (e.g., "dueBefore:tomorrow", "tag:work", "priority:1") list_name: Filter to a specific list name include_completed: Include completed tasks (default: false)
Returns: List of tasks with metadata
Examples: - list_tasks() → all incomplete tasks - list_tasks(filter="dueBefore:tomorrow") → tasks due soon - list_tasks(filter="tag:work AND priority:1") → high priority work tasks - list_tasks(list_name="Personal") → tasks in Personal list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | ||
| list_name | No | ||
| include_completed | No |