Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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)
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool returns but doesn't mention whether this is a read-only operation (implied but not stated), whether it requires authentication, rate limits, or any other behavioral characteristics. The description is minimal and doesn't provide sufficient behavioral context for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise and front-loaded. The first sentence clearly states the purpose, and the second sentence efficiently describes the return format. Every word serves a purpose with zero waste or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that the tool has zero parameters, has an output schema (implied by the return description), and performs a relatively simple read operation, the description is reasonably complete. It states what the tool does and what it returns. However, with no annotations and multiple sibling tools that retrieve task information, more context about when to use this specific tool would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters (schema description coverage is 100%), so the baseline for a parameterless tool is 4. The description appropriately doesn't discuss parameters since none exist, which is correct for this case.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: '获取工作流库的任务状态概览(各状态数量仪表板)' translates to 'Get workflow library task status overview (dashboard of counts per status)'. This specifies the verb ('get') and resource ('task status overview'), but doesn't explicitly differentiate it from sibling tools like 'list_tasks' or 'get_today_tasks' which might provide different types of task information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'list_tasks', 'get_today_tasks', and 'search_tasks' that also retrieve task information, there's no indication of when this aggregated dashboard view is preferable to those more detailed listing tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/wauwaya/notion-workflow-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server