Get Project Data
get_project_dataFetch project details, uncompleted tasks, and kanban columns in a single request. Use to obtain all active tasks and project structure.
Instructions
Retrieve complete project (清单) data including project details, tasks (任务), and kanban columns (看板列).
WHEN TO USE:
Get all uncompleted tasks (未完成任务) within a specific project (清单)
Need project metadata AND tasks together
View kanban column structure (看板列结构) for kanban-view projects
WHEN NOT TO USE:
Only need project metadata → use 'get_project' (faster)
Filter tasks by date/priority/across projects (按日期/优先级筛选) → use 'list_tasks'
Need completed tasks (已完成任务) → NOT available via API
⚠️ LIMITATION: Only returns UNCOMPLETED tasks (未完成任务, status=0). Completed tasks are not accessible.
RETURNS: { project, tasks[], columns[] } - project metadata (清单信息), task list (任务列表), and kanban columns (看板列).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | The unique ID of the project to retrieve data for (清单ID) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tasks | No | ||
| columns | No | ||
| project | Yes |