get_task
Retrieve complete details for a specific Notion task using its page ID to access project tracking, subtasks, and automated summaries through the Claude interface.
Instructions
获取单个任务的完整详情。
Args: task_id: Notion 页面 ID(可从 list_tasks 结果中获取)
Returns: 任务详情(字典格式)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Implementation Reference
- tools/workflow.py:62-72 (handler)The get_task function in tools/workflow.py acts as the handler for the get_task tool, delegating the request to the NotionClient.
def get_task(task_id: str) -> dict: """ 获取单个任务的完整详情。 Args: task_id: Notion 页面 ID(可从 list_tasks 结果中获取) Returns: 任务详情(字典格式) """ return get_client().get_task(task_id).model_dump()