Skip to main content
Glama
Skeptomenos

google-workspace-mcp-advanced

by Skeptomenos

list_tasks

Retrieve tasks from a specific Google Task list using filters for completion, due dates, and more. Manage your task lists efficiently with pagination and sorting options.

Instructions

List all tasks in a specific task list.

Args: user_google_email (str): The user's Google email address. Required. task_list_id (str): The ID of the task list to retrieve tasks from. max_results (int): Maximum number of tasks to return. (default: 20, max: 10000). page_token (Optional[str]): Token for pagination. show_completed (bool): Whether to include completed tasks (default: True). Note that show_hidden must also be true to show tasks completed in first party clients, such as the web UI and Google's mobile apps. show_deleted (bool): Whether to include deleted tasks (default: False). show_hidden (bool): Whether to include hidden tasks (default: False). show_assigned (bool): Whether to include assigned tasks (default: False). completed_max (Optional[str]): Upper bound for completion date (RFC 3339 timestamp). completed_min (Optional[str]): Lower bound for completion date (RFC 3339 timestamp). due_max (Optional[str]): Upper bound for due date (RFC 3339 timestamp). due_min (Optional[str]): Lower bound for due date (RFC 3339 timestamp). updated_min (Optional[str]): Lower bound for last modification time (RFC 3339 timestamp).

Returns: str: List of tasks with their details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_google_emailYes
task_list_idYes
max_resultsNo
page_tokenNo
show_completedNo
show_deletedNo
show_hiddenNo
show_assignedNo
completed_maxNo
completed_minNo
due_maxNo
due_minNo
updated_minNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.10

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the burden of disclosure. It explains filtering behavior, defaults, and a notable nuance: 'show_hidden must also be true to show tasks completed in first party clients.' It does not mention auth requirements or side effects, but as a list operation, read-only behavior is implied. The extra caveat adds useful context.

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 long but well-structured with an Args list and Returns section. The opening sentence is direct and informative. Every parameter earns its place given the tool's complexity, and there is no filler or redundancy.

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

Completeness5/5

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

For a complex tool with 13 parameters, no annotations, and no output schema details beyond a string return, the description is comprehensive. It covers all parameters, defaults, constraints, and a behavioral caveat. It is complete enough for an agent to call the tool correctly without additional external knowledge.

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

Parameters5/5

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

Schema description coverage is 0%, and the description compensates thoroughly. Each of the 13 parameters is documented with its type, default, constraints (e.g., max_results max 10000), and special notes (e.g., the interaction between show_hidden and show_completed). This is far beyond what the schema alone provides.

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

Purpose5/5

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

The description clearly states 'List all tasks in a specific task list,' which specifies the verb (list), resource (tasks), and scope (specific task list). This distinguishes it from sibling tools like get_task, list_task_lists, and task mutation tools.

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

Usage Guidelines4/5

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

The description provides clear context for when to use this tool (to retrieve tasks from a specific task list), but it does not explicitly mention alternatives or when not to use it. For instance, it doesn't say 'use get_task for a single task.' However, the purpose is clear enough that an agent can infer appropriate usage.

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

Deploy Server

Other Tools