get_overview
Retrieve task status dashboard showing counts for todo, in-progress, done, and on-hold items in your Notion workflow system.
Instructions
获取工作流库的任务状态概览(各状态数量仪表盘)。
Returns: 包含 todo / in_progress / done / on_hold / total 数量的字典
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- tools/aggregations.py:23-30 (handler)The handler function that executes the logic to retrieve task overview data.
def get_overview() -> dict: """ 获取工作流库的任务状态概览(各状态数量仪表盘)。 Returns: 包含 todo / in_progress / done / on_hold / total 数量的字典 """ return get_client().get_task_overview().model_dump() - server.py:55-55 (registration)Registration of the 'get_overview' tool in the MCP server instance.
mcp.tool(get_overview)