Google Tasks MCP
This server is an MCP tool for reading and managing Google Tasks via the Tasks API, covering task lists and tasks with write operations and safety confirmations.
Task lists: list, get, create, rename, and permanently delete (requires
confirm: true).Tasks: list with filters (completion, deletion, hidden, due/completed/updated ranges) and pagination; get by ID.
Create tasks: with title, optional notes, due date (date-only), and optional parent/previous for subtasks and ordering.
Update tasks: patch title, notes, due (use
nullto clear), or status (needsAction/completed).Lifecycle operations: complete, reopen, and move tasks (reorder, reparent, or move to another list).
Destructive actions: delete a task or clear completed tasks, each requiring explicit
confirm: true.Safety: all destructive tools require confirmation; read-only tools are annotated; unknown fields rejected.
Operation: runs as a local stdio MCP server, no network listener; uses OAuth token and Google Tasks API.
Allows AI agents to manage a user's Google Tasks, providing tools for listing, creating, updating, deleting, and moving task lists and tasks, including subtasks, completion status, and clearing completed tasks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Google Tasks MCP@Google Tasks MCP what tasks do I have due today?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Tasks MCP
Public beta · v0.3.1
Overview
Google Tasks MCP is a local Python MCP server that lets compatible AI agents read and manage the
authenticated user's Google Tasks. It uses Google's official Tasks API, OAuth 2.0 Desktop App
credentials, and the MCP Python SDK over stdio.
This repository is one component of the Google Services MCP collection.
The Git repository is named google-task-mcp (singular), while the console commands are named
google-tasks-mcp and google-tasks-mcp-auth (plural). The release distribution is
phamviet-google-tasks-mcp. This distinction is intentional: the unqualified PyPI name
google-tasks-mcp is already owned by the unrelated io.github.ebmurha project and must not be
installed for this server.
The package is currently classified as Beta in pyproject.toml.
Related MCP server: Google Tasks MCP Server
Release status
The GitHub Release v0.3.1,
dated 2026-09-01, is the authoritative cross-machine distribution. Install its exact wheel and
verify its SHA256SUMS file. PyPI is not published for this project. Do not use a bare pip install google-tasks-mcp: it selects an unrelated package. See release and
deployment.
Features
List, inspect, create, rename, and delete task lists.
List and filter tasks with API pagination.
Create, edit, complete, reopen, move, reorder, and delete tasks.
Create and move subtasks using
parentandprevious.Hide completed tasks through Google Tasks' clear operation.
Preserve the distinction between an omitted update field and explicit
nullused to clearnotesordue.Publish MCP safety annotations and require explicit confirmation for destructive operations.
Store the OAuth refresh token outside the repository with owner-only permissions.
Run entirely on Python; Node.js is not required.
MCP tools
Tool | Purpose |
| List task lists |
| Get one task list |
| Create a task list |
| Rename a task list |
| Delete a task list; requires |
| List or filter tasks with pagination |
| Get one task |
| Create a task or subtask |
| Patch title, notes, due date, or status |
| Mark a task completed |
| Mark a task as needing action |
| Reorder, reparent, or move a task to another list |
| Delete a task; requires |
| Clear completed tasks; requires |
Google Tasks stores only the date portion of a due timestamp; the API discards a supplied time-of-day. Task titles are limited to 1,024 characters and notes to 8,192 characters.
All input objects reject unknown fields. IDs and other required strings must be non-empty. The complete input contract is:
Tool | Arguments |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The five list_tasks time filters must be RFC 3339 timestamps with a timezone. A due value may
instead be YYYY-MM-DD; the server validates calendar dates and normalizes due values to UTC before
calling Google. To see tasks completed in Google's first-party clients, set both show_completed
and show_hidden to true.
For update_task, omit fields that should remain unchanged and use explicit null only to clear
notes or due. Explicit null for title or status is rejected before any Google API call.
List operations return task_lists or tasks plus next_page_token. Other successful operations
return Google's resource object, except deletes and clear, which return a small acknowledgement.
Results are JSON in MCP text content. Validation, authentication, and Google API failures are
returned as MCP tool errors. clear_completed_tasks uses Google Tasks' clear operation, which
hides completed tasks; it does not permanently delete each task.
Requirements
Python 3.11 or newer, matching
requires-python = ">=3.11"inpyproject.toml. The examples below install Python 3.12 withuv; a system Python installation is not required.uv. Install it with the official instructions ifuv --versiondoes not succeed, then open a new terminal.A Google account.
A Google Cloud project with the Google Tasks API enabled.
A local MCP client that supports
stdioservers.
Installation
GitHub Release wheel (recommended)
The commands below do not clone this repository. They install Python 3.12 through uv, download
the v0.3.1 wheel and checksum from the release, and install into a user-writable, versioned
directory. Run uv --version first; install uv from the official link above if it is absent.
uv --version
uv python install 3.12
INSTALL_ROOT="$HOME/.local/share/google-tasks-mcp/v0.3.1"
mkdir -p "$INSTALL_ROOT"Then download and verify the wheel, and install that verified local file:
INSTALL_ROOT="$HOME/.local/share/google-tasks-mcp/v0.3.1"
DOWNLOAD_DIR="$INSTALL_ROOT/downloads"
WHEEL_NAME="phamviet_google_tasks_mcp-0.3.1-py3-none-any.whl"
mkdir -p "$DOWNLOAD_DIR"
curl -fL -o "$DOWNLOAD_DIR/$WHEEL_NAME" \
"https://github.com/phamviet86/google-task-mcp/releases/download/v0.3.1/$WHEEL_NAME"
curl -fL -o "$DOWNLOAD_DIR/SHA256SUMS" \
"https://github.com/phamviet86/google-task-mcp/releases/download/v0.3.1/SHA256SUMS"
(cd "$DOWNLOAD_DIR" && shasum -a 256 -c SHA256SUMS --ignore-missing)
uv venv --python 3.12 "$INSTALL_ROOT/venv"
uv pip install --python "$INSTALL_ROOT/venv/bin/python" "$DOWNLOAD_DIR/$WHEEL_NAME"
"$INSTALL_ROOT/venv/bin/google-tasks-mcp-auth" --versionOn Linux, use sha256sum -c SHA256SUMS --ignore-missing instead. The installed server is then
$HOME/.local/share/google-tasks-mcp/v0.3.1/venv/bin/google-tasks-mcp. MCP client configuration
files do not expand $HOME, so replace it there with your actual absolute home-directory path.
Source checkout (development only)
Clone the repository and install the development environment:
git clone https://github.com/phamviet86/google-task-mcp
cd google-task-mcp
uv sync --extra devTo build wheel and source distributions:
uv buildFor a reviewed source build, install a specific Git commit into a dedicated virtual environment:
uv python install 3.12
uv venv --python 3.12 "$HOME/.local/share/google-tasks-mcp/source-venv"
uv pip install \
--python "$HOME/.local/share/google-tasks-mcp/source-venv/bin/python" \
"git+https://github.com/phamviet86/google-task-mcp@<commit>"The installed server entry point is
$HOME/.local/share/google-tasks-mcp/source-venv/bin/google-tasks-mcp.
PyPI
phamviet-google-tasks-mcp is not published on PyPI for v0.3.1. Use the GitHub Release wheel
above; never substitute the unrelated PyPI project google-tasks-mcp.
Google Cloud and OAuth setup
Open Google Cloud Console.
Create or select a project.
Enable Google Tasks API under APIs & Services → Library.
Configure the OAuth consent screen.
Under APIs & Services → Credentials, create an OAuth client ID with application type Desktop app.
Download the OAuth Desktop client JSON as
client_secret.jsonand keep it protected outside this repository.
Authorize from a desktop that can open the browser consent flow:
INSTALL_ROOT="$HOME/.local/share/google-tasks-mcp/v0.3.1"
GOOGLE_TOKEN_FILE="$HOME/.config/google-tasks-mcp/token.json" \
"$INSTALL_ROOT/venv/bin/google-tasks-mcp-auth" \
--client-secret "$HOME/.config/google-tasks-mcp/client_secret.json"The command accepts only a Google OAuth Desktop client JSON containing the top-level installed
object. It requests the full https://www.googleapis.com/auth/tasks scope because this server
exposes read and write operations. The token defaults to:
~/.config/google-tasks-mcp/token.jsonLater runs refresh expired credentials automatically. Refresh is guarded in-process so concurrent tool calls do not refresh the same token repeatedly; the refreshed authorized-user token is atomically persisted with owner-only permissions before the service is built. The same OAuth Desktop client definition may be used to authorize another local application, but each service should keep its own token with its exact scope. Do not reuse a broader Google Workspace token as this service's token.
Environment variables
Variable | Required | Default | Purpose |
| No |
| Override the Google Tasks OAuth token path |
| No |
| Native Google client retries per request; integer from |
~ is expanded in GOOGLE_TOKEN_FILE. A relative token override remains relative to the MCP
subprocess's working directory, so use an absolute path in client configuration. The retry value is
passed to every Google request as execute(num_retries=...); the SDK applies randomized exponential
backoff. The default 3 means one initial attempt plus at most three retries. Set it to 0 to
disable retries.
For example, authorize and store the token at an explicit protected path:
INSTALL_ROOT="$HOME/.local/share/google-tasks-mcp/v0.3.1"
GOOGLE_TOKEN_FILE="$HOME/.config/google-tasks-mcp/token.json" \
"$INSTALL_ROOT/venv/bin/google-tasks-mcp-auth" \
--client-secret "$HOME/.config/google-tasks-mcp/client_secret.json"Pass the same GOOGLE_TOKEN_FILE value to the MCP server. Never commit the OAuth client JSON or
generated token.
Running the server
The release-installed server command is:
$HOME/.local/share/google-tasks-mcp/v0.3.1/venv/bin/google-tasks-mcpThe server communicates through stdio, so launch it through an MCP client rather than manually
in a terminal. From a development checkout only, use:
uv run google-tasks-mcpgoogle-tasks-mcp has no operational command-line arguments; it only exposes --help and
--version before entering stdio mode. The authorization helper accepts one required argument,
--client-secret PATH; use google-tasks-mcp-auth --help for its generated CLI help.
An MCP client normally launches the release virtual-environment console script directly. Replace
/absolute/path/to/home with your actual absolute home directory:
/absolute/path/to/home/.local/share/google-tasks-mcp/v0.3.1/venv/bin/google-tasks-mcpThe server always communicates over stdio and does not open a network port.
Platform support
macOS and Linux are the supported hosts for v0.3.1. The implementation creates token
directories with POSIX permissions (0700) and token files with POSIX permissions (0600), and the
examples assume POSIX paths. Windows has not been validated and is not a supported deployment target
for 0.3.1 until its token-permission behavior and client setup are tested.
MCP client configuration
Use absolute paths and restart the MCP client after changing its configuration.
Codex
Add the server to ~/.codex/config.toml or a trusted project .codex/config.toml:
[mcp_servers.google_tasks]
command = "/absolute/path/to/home/.local/share/google-tasks-mcp/v0.3.1/venv/bin/google-tasks-mcp"
[mcp_servers.google_tasks.env]
GOOGLE_TOKEN_FILE = "/absolute/path/to/home/.config/google-tasks-mcp/token.json"
GOOGLE_API_NUM_RETRIES = "3"See the official Codex MCP guide for current client configuration details.
Hermes Agent
Hermes reads MCP servers from ~/.hermes/config.yaml:
mcp_servers:
google_tasks:
command: "/absolute/path/to/home/.local/share/google-tasks-mcp/v0.3.1/venv/bin/google-tasks-mcp"
args: []
env:
GOOGLE_TOKEN_FILE: "/absolute/path/to/home/.config/google-tasks-mcp/token.json"
GOOGLE_API_NUM_RETRIES: "3"
timeout: 120
connect_timeout: 30Use the absolute token path directly in the server's env mapping. Do not enable
supports_parallel_tool_calls for the complete tool set because it includes writes to shared task
lists. See the
official Hermes MCP guide.
Generic MCP clients
For clients that use JSON configuration, the equivalent transport settings are:
{
"mcpServers": {
"google_tasks": {
"command": "/absolute/path/to/home/.local/share/google-tasks-mcp/v0.3.1/venv/bin/google-tasks-mcp",
"env": {
"GOOGLE_TOKEN_FILE": "/absolute/path/to/home/.config/google-tasks-mcp/token.json",
"GOOGLE_API_NUM_RETRIES": "3"
}
}
}
}Configuration syntax is client-specific; use the client's native MCP adapter rather than assuming that every client accepts the same JSON shape.
Usage and examples
A typical safe workflow is:
Call
list_task_liststo resolve a human-readable list name to its ID.Call
list_tasksorget_taskbefore modifying an existing task.Use a write tool such as
create_task,update_task, ormove_task.Obtain explicit user confirmation before calling
delete_task_list,delete_task, orclear_completed_taskswithconfirm: true.
Automation result examples
For an MCP call that is not an error, parse the first text content item as JSON. List tools always
return a collection and a pagination token (which is null on the final page):
{
"task_lists": [{"id": "fake-list-id", "title": "Example"}],
"next_page_token": null
}list_tasks uses the same shape with tasks instead of task_lists. The resource-returning tools
(get_*, create_*, update_*, complete_task, reopen_task, and move_task) return the Google
Tasks resource object. Successful destructive operations have these small acknowledgement objects:
{"deleted": true, "task_list_id": "fake-list-id"}
{"deleted": true, "task_list_id": "fake-list-id", "task_id": "fake-task-id"}
{"cleared": true, "task_list_id": "fake-list-id"}When MCP marks a tool call as an error (isError: true; is_error in the Python SDK), its text
content is a human-readable validation, authentication, or Google API error message rather than a
JSON result. Agents should not retry a write blindly after an error: re-read the affected list or
task first, then decide whether the intended change already occurred.
The Python implementation preserves the previous TypeScript tool names, arguments, pagination defaults, safety annotations, date normalization, and omitted-versus-null update behavior.
There is no local task database, cache, index, background synchronization job, webhook, or network listener. Each tool call accesses Google Tasks API v1 through the official Python client. The only persistent local state managed by this package is the OAuth authorized-user token.
Each MCP tool call builds a fresh Google Tasks service and executes the complete operation in one
worker thread. No googleapiclient service or httplib2 transport is shared across threads. This
follows the Google client library's thread-safety guidance while still allowing independent MCP
calls to run concurrently. The service is closed in that same worker thread after every call,
including when request execution fails, so its underlying sockets are not retained.
Troubleshooting
Authentication error: run
google-tasks-mcp-authagain and confirm that the MCP subprocess receives the sameGOOGLE_TOKEN_FILEvalue.Token path looks correct but is not found: use an absolute
GOOGLE_TOKEN_FILE; relative paths are evaluated from the MCP subprocess's working directory.Retry configuration error: set
GOOGLE_API_NUM_RETRIESto an integer from0through10.No refresh token was returned: revoke the application's existing Google account grant, then run the authorization helper again as directed by its error message.
Expired token has no refresh token: run the authorization helper again; the server refuses to build a service from credentials that cannot be refreshed.
Browser flow cannot open: authorize on a desktop that can complete the installed-app OAuth flow, then protect and transfer the generated service-specific token if needed.
Tools are missing: restart the MCP client and verify the absolute command path. A fresh MCP client should discover exactly 14 tools.
Server initializes but the first tool fails: this is expected when no token exists. MCP initialization and tool discovery do not contact Google; a tool call requires the OAuth token and reports an authentication error until
google-tasks-mcp-authhas completed.Due time is missing: Google Tasks retains only the date portion of a due timestamp.
Upgrade, rollback, or uninstall: use the dedicated virtual environment so changing one MCP server does not affect system Python. The detailed safe procedure is in release and deployment.
Security
Report vulnerabilities privately according to the security policy. Never include credentials or real task data in a public issue.
Keep
client_secret.jsonand OAuth tokens outside source control and restrict their filesystem permissions.Use a dedicated token directory: authorization sets its directory to mode
0700and writes the token atomically with mode0600on POSIX systems.Grant only the Google Tasks scope used by this service and keep separate tokens for other Google services.
Treat create, update, move, clear, and delete operations as writes. Destructive tools require explicit confirmation, but the local account and MCP client still control access to the server.
For one user on one workstation or VPS,
stdioplus a protected local token is the simplest deployment. A multi-user hosted service requires per-user OAuth sessions, encrypted server-side token storage, and an appropriate network transport; never share one refresh token among users.
Development and contributing
Read CONTRIBUTING.md before opening a pull request. Participation is governed by the Contributor Covenant Code of Conduct.
Run all configured checks before submitting a change:
uv run ruff format --check .
uv run ruff check .
uv run mypy
uv run pytestThe regression suite dispatches all 14 tools against a fake Google Tasks client, verifies destructive confirmation, and tests omitted-versus-null update behavior.
For non-security bugs and feature requests, use the repository's structured issue templates.
License
References
Available Tools
14 toolsclear_completed_tasksADestructive
Hide all completed tasks in a list. Requires explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | Yes | Must be true after the user explicitly confirms clearing completed tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark destructiveHint=true, so the description is not burdened with that. It adds the safety-critical behavior that explicit confirmation is required, and clarifies the operation is a 'hide' rather than a per-task delete. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, each earning its place: the first states the action and scope, the second states the confirmation requirement. No filler, front-loaded with the primary behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-parameter, destructive tool with full schema coverage and annotations, the description provides the essential action and confirmation requirement. It could mention reversibility or side effects of 'hide', but an agent has enough information to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed descriptions for both confirm and task_list_id, so the description need not elaborate. The phrase 'Requires explicit confirmation' mostly mirrors the schema's confirm description and adds no extra parameter-level meaning. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses a specific verb and resource: 'Hide all completed tasks in a list.' It clarifies the tool name's 'clear' as 'hide' and clearly distinguishes this from single-task siblings like complete_task and delete_task. The scope and action are unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides a clear context: use when you want to hide completed tasks in a list, and notes the confirmation prerequisite. It does not explicitly name alternatives or exclusions, but the purpose is specific enough for an agent to select it over single-task tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
complete_taskBIdempotent
Mark a task completed.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Google task ID; obtain it from list_tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a mutating but idempotent, non-destructive operation. The description adds that the task's status changes to completed, but discloses no further behavioral context such as side effects on task ordering or visibility. This is acceptable given the annotation coverage but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence with no filler or redundancy. It is appropriately sized for a simple status-change operation, though it is very close to restating the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter mutation with a complete input schema and no output schema, the description is mostly sufficient. The main missing piece is any explicit statement about behavior when the task is already completed, but the idempotentHint annotation partially covers that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly explaining that task_id comes from list_tasks and task_list_id comes from list_task_lists. The description adds no parameter-level meaning, so the schema carries the full burden and the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action and resource: 'Mark a task completed.' This is clear and unambiguous as a verb-plus-resource statement. It does not explicitly differentiate from sibling tools like update_task or reopen_task, but the completion semantics are distinct enough to infer.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to use this tool versus alternatives such as update_task or reopen_task. The usage is only implied by the description and tool name, and no conditions, prerequisites, or exclusions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_taskA
Create a task, optionally as a subtask or after a sibling.
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Due date as YYYY-MM-DD or RFC 3339. Google Tasks stores only the date and discards the time. | |
| notes | No | ||
| title | Yes | ||
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists | |
| parent_task_id | No | ||
| previous_task_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a write operation (readOnlyHint=false). The description adds context about subtask and sibling semantics, which goes beyond the schema, but it does not disclose return value, side effects, or potential constraints (e.g., parent_task_id must belong to the same list). This is modest additional transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded with the core action and then adds the optional placement behavior. It contains zero filler and is efficiently structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is minimal: it covers placement but omits return value (no output schema present) and does not mention relationships between parent_task_id/previous_task_id and task_list_id. While the schema covers required fields, an agent might need more guidance on expected behavior or error cases. For a relatively simple create operation, the description is adequate but not rich.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema description coverage at only 33%, the description compensates for the two most ambiguous parameters: parent_task_id is explained as creating a subtask, and previous_task_id as placing after a sibling. Other parameters are either self-explanatory or documented in the schema (due, task_list_id). This adds meaningful clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('create') and resource ('a task'), and adds placement options ('as a subtask or after a sibling') that distinguish it from other create/update tools in the sibling list. There is no ambiguity about what this tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for creating tasks and mentions optional subtask/sibling placement, but does not explicitly contrast with alternatives like create_task_list or update_task. An agent can infer when to use it, but the description provides no explicit when-not or alternative routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_task_listC
Create a Google task list.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses only that it creates a task list, which matches the readOnlyHint=false annotation, but adds no behavioral context beyond that. It does not mention permission requirements, side effects (despite openWorldHint=true), or what happens on success. The burden of disclosure falls entirely on the description since annotations are minimal, and it fails to provide any additional transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, short sentence that is front-loaded and free of fluff. It efficiently states the tool's purpose, though it under-specifies other needed details; this is more a completeness issue than a conciseness one.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a creation tool with no output schema, the description should at least indicate the expected output (e.g., the created list's ID) or any unique behavior. It does neither, leaving the agent without essential information about the outcome of the call.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, meaning the description must compensate for the lack of parameter documentation, but it does not explain the 'title' parameter at all. The parameter is self-explanatory from its name, but the description does not add any meaning beyond the schema's min/max constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create') and the resource ('Google task list'), which unambiguously differentiates it from sibling tools like list_task_lists, get_task_list, update_task_list, and delete_task_list. The verb and object are specific enough that an agent would not confuse it with create_task (a task, not a list).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives—no mention of distinguishing from create_task or any preconditions. The description only states what it does, not the context in which it should be chosen over siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_taskADestructive
Permanently delete a task. Requires explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | Yes | Must be true after the user explicitly confirms deletion | |
| task_id | Yes | Google task ID; obtain it from list_tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructive=true, and the description adds that deletion is permanent and requires explicit confirmation. This provides useful safety context about irreversibility and user consent. No contradiction with annotations; readOnlyHint=false is consistent with the write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The core action is front-loaded, and the confirmation requirement is the only additional essential detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple delete operation, the schema and annotations together cover the required IDs, the confirmation mechanism, and destructiveness. The description adds permanence and consent. There is no output schema, so omitting return-value details is acceptable. Minor gaps like behavior on nonexistent tasks are not critical.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema coverage is 100%, and each parameter is already well documented: task_id and task_list_id explain where to obtain them, and confirm explains the const=true requirement. The description adds no new parameter details beyond reinforcing the confirmation requirement, matching the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('delete') and resource ('a task'), with 'Permanently' adding important scope. It is clearly distinguishable from sibling tools like complete_task, delete_task_list, and clear_completed_tasks, so an agent can select it correctly without opening schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear precondition: explicit confirmation is required before calling. However, it does not explicitly contrast with sibling operations (e.g., using complete_task instead of deletion, or delete_task_list for removing an entire list), so usage guidance is only implied rather than fully spelled out.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_task_listADestructive
Permanently delete a Google task list. Requires explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | Yes | Must be true after the user explicitly confirms deletion | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as destructive, non-read-only, and non-idempotent. The description adds context beyond the annotations by emphasizing that deletion is permanent and that explicit confirmation is a requirement. This is valuable extra behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with the core action first and the safety prerequisite second. There is no redundancy or filler; every word contributes to the tool's usability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple destructive tool with two well-documented parameters and strong annotations, the description is nearly complete. It covers permanence and confirmation. The main gap is that it does not clarify whether deleting a task list also deletes its contained tasks, which is relevant given the sibling task tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides complete descriptions for both parameters, including the source of task_list_id and the role of confirm. The description's confirmation requirement mirrors the schema but adds no new parameter-specific meaning, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the action (permanently delete) and the resource (Google task list). This distinguishes it from siblings like delete_task, which targets a different resource, and makes the tool's purpose immediately obvious.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states a clear prerequisite: explicit user confirmation is required. However, it does not explicitly explain when to use this tool versus alternatives such as update_task_list or delete_task, leaving the distinction to be inferred from the resource name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_taskARead-onlyIdempotent
Get one task by task-list ID and task ID.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Google task ID; obtain it from list_tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds a small behavioral constraint ('one task' as opposed to a list), which is consistent with the annotations and provides marginal value beyond them, but it does not disclose error behavior, return format, or prerequisites.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with zero filler. It conveys the operation, resource, and required identifiers in a directly usable format.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-task retrieval with fully documented parameters and safety annotations, the description is sufficient to invoke correctly. Return shape and error handling are not described, but the absence of an output schema and the low tool complexity make this acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter already documented as to how to obtain it. The description restates the parameter names but adds no extra semantic detail beyond what the schema provides, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Get'), a specific resource ('one task'), and the required identifiers ('task-list ID and task ID'). This clearly distinguishes it from list_tasks (returns multiple tasks) and get_task_list (returns a task list), even without naming alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a single task is needed and both IDs are available, but it does not explicitly state when not to use this tool or name alternatives. The schema parameter descriptions partially compensate by directing the agent to list_tasks and list_task_lists for ID provenance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_task_listARead-onlyIdempotent
Get one Google task list by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, fully covering the safety profile. The description adds the scoping constraint "one ... by ID" but discloses no additional behavioral traits such as not-found behavior, rate limits, or response shape. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one short sentence with the verb front-loaded and zero filler. Every word contributes to the meaning. This is appropriately concise for a simple single-parameter retrieval tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter read-only tool with full schema coverage and safety annotations, the description plus schema is sufficient for an agent to invoke it correctly. The only minor gap is the lack of an explicit return-value statement, but "Get" strongly implies the task list object is returned. No output schema exists, so this is a small but acceptable omission.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the parameter description already explains that task_list_id is the Google task list ID and where to obtain it. The description only says "by ID", which slightly reinforces the parameter's role but does not add meaning beyond what the schema already provides. Baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description "Get one Google task list by ID" has a specific verb (Get), a specific resource (Google task list), and the qualifier "one ... by ID" clearly distinguishes it from list_task_lists (which lists all) and task-level tools like get_task. The purpose is unambiguous even without referencing sibling names.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description itself gives no explicit when-to-use guidance or alternatives. However, the parameter description in the schema — "obtain it from list_task_lists" — implies a workflow of first listing task lists to get an ID, then calling this tool. This provides implied usage context but no explicit exclusions or alternative routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_task_listsARead-onlyIdempotent
List the authenticated user's Google task lists.
| Name | Required | Description | Default |
|---|---|---|---|
| page_token | No | ||
| max_results | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the safety profile (readOnlyHint, idempotentHint, destructiveHint). The description adds useful context by specifying the operation is scoped to the authenticated user, but it does not disclose pagination behavior, return format, or default/limit semantics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is front-loaded and contains no filler. It communicates the tool's purpose clearly and efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, optional-parameter read operation backed by strong annotations, the description is largely sufficient. It could add a note about pagination or maximum result behavior, but the schema already disambiguates the optional parameters with defaults and constraints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description is expected to compensate for the two parameters. It does not mention page_token or max_results at all, leaving the agent to infer their meaning solely from schema titles and constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List'), a clear resource ('Google task lists'), and a scope ('authenticated user's'). The plural 'task lists' distinguishes it from the sibling get_task_list, which targets a single list, and from list_tasks, which targets tasks inside a list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage context is implied: use this tool when needing to enumerate the authenticated user's task lists. However, there is no explicit guidance about when to prefer this over siblings like list_tasks or get_task_list, and no exclusions or alternatives are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tasksARead-onlyIdempotent
List tasks in a Google task list with filters and pagination.
| Name | Required | Description | Default |
|---|---|---|---|
| due_max | No | ||
| due_min | No | ||
| page_token | No | ||
| max_results | No | ||
| show_hidden | No | ||
| updated_min | No | ||
| show_deleted | No | ||
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists | |
| completed_max | No | ||
| completed_min | No | ||
| show_completed | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, covering the safety profile. The description adds only a generic 'filters and pagination' note, which is largely a restatement of the schema properties. It does not disclose return shape, default behaviors like show_completed=true, or rate-limit/auth details, but it is consistent with the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tight sentence that front-loads the core action and scoping. Every word contributes meaning, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 11 parameters, no output schema, and very low schema description coverage, the description is too thin. It does not explain what the returned task objects look like, how pagination should be used, or the semantics/interaction of the date filters. The read-only annotations reduce risk, but an agent still lacks enough context to call this tool confidently with non-trivial filters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 9%, with only task_list_id described. The description does not compensate by explaining the filter parameters (due_min, due_max, completed_min, completed_max, updated_min), date formats, or pagination mechanics. The parameter names are somewhat self-explanatory, but the description adds little semantic value beyond what the raw schema already shows.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('tasks in a Google task list'), and adds 'filters and pagination' to distinguish it from simply retrieving a task list. It is clearly distinguishable from siblings like list_task_lists, which lists task lists, and get_task, which retrieves a single task.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for browsing/filtering tasks within a specific task list, but it does not explicitly state when to use it instead of alternatives like get_task for a single task or list_task_lists for task lists. There is no exclusions or when-not-to-use guidance, so usage is mostly implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_taskA
Reorder a task, change its parent, or move it to another task list.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Google task ID; obtain it from list_tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists | |
| parent_task_id | No | ||
| previous_task_id | No | ||
| destination_task_list_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a non-read-only mutation (readOnlyHint=false), and the description adds behavioral scope by listing reorder, reparent, and cross-list move. But it does not disclose important behavioral details such as the role of task_list_id as the source list, the meaning of previous_task_id for ordering, or whether moving across lists requires destination_task_list_id.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, tightly written sentence that front-loads the core operations with no filler or irrelevant detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 5-parameter tool with no output schema, the description and sparse schema leave critical ambiguity: the distinction between task_list_id and destination_task_list_id, the meaning of previous_task_id, and constraints around parent changes are all unexplained. An agent would need to infer or probe API behavior, making the definition incomplete for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only task_id and task_list_id have schema descriptions, so coverage is 40% and the three optional parameters are left undocumented. The description maps high-level operations to parent_task_id, previous_task_id, and destination_task_list_id, but it does not explain their precise semantics, such as previous_task_id indicating the task after which the moved task should appear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names three concrete operations (reorder, change parent, move to another task list) on the specific resource 'task'. This clearly distinguishes it from sibling tools like complete_task, reopen_task, and delete_task.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when you need to reorder, reparent, or relocate a task. However, it never explicitly contrasts this with update_task or states when not to use it, leaving the agent to infer the decision boundary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reopen_taskAIdempotent
Mark a completed task as needing action again.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Google task ID; obtain it from list_tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description directly explains the behavioral effect: transitioning a task from completed back to needing action. Annotations already cover non-read-only, idempotent, and non-destructive properties, and the description adds the key semantic detail without contradicting those annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word contributes meaning, and the core action is immediately clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter mutating tool with fully documented parameters and annotations covering safety and idempotency, the description is complete. No output schema exists, but the operation is simple enough that return-value details are not essential for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and both parameters are described with source hints ('obtain it from list_tasks'). The description adds one important piece of semantic context beyond the schema: the target task must be completed. This helps the agent understand which task_id is valid for this operation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Mark') and resource ('a completed task') plus the intended outcome ('needing action again'). It clearly conveys the state transition and is easily distinguished from the sibling tool complete_task, which performs the reverse operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: use this tool when a task is completed and should be brought back into an actionable state. It does not explicitly mention alternatives or exclusion cases, but the 'completed task' prerequisite is strong enough guidance for an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_taskAIdempotent
Patch a task's title, notes, due date, or status. Use null to clear notes or due.
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Use null to clear the due date; otherwise use YYYY-MM-DD or RFC 3339. | |
| notes | No | ||
| title | No | ||
| status | No | ||
| task_id | Yes | Google task ID; obtain it from list_tasks | |
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds a key behavioral detail beyond the annotations: 'Use null to clear notes or due.' This clarifies the semantics of null values, which is especially important for a patch operation. Annotations already indicate it is mutating, idempotent, and non-destructive, so the description does not need to repeat those.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short, information-dense sentences. The main action is front-loaded, and the null-handling detail is included without fluff. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a patch operation with annotations already covering safety and idempotency, the description is mostly sufficient. It could be improved by stating what the tool returns (e.g., updated task object), since there is no output schema. The null semantics are covered, and required parameters are in the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 50%, and the description helps compensate by explaining that null clears notes and due dates. It also enumerates the editable fields, mapping directly to the parameters. However, it does not add meaning for title or status beyond what the schema's constraints and enum convey, so the compensation is partial.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Uses the specific verb 'Patch' and names the resource 'task' followed by an explicit list of updatable fields (title, notes, due date, status). This clearly distinguishes it from specialized siblings like complete_task or move_task, even without naming them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: use this tool when you need to update those four fields. However, it gives no explicit guidance about alternatives such as complete_task or reopen_task for status changes, or move_task for relocating tasks. The usage context is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_task_listAIdempotent
Rename a Google task list.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| task_list_id | Yes | Google task list ID; obtain it from list_task_lists |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=false and idempotentHint=true. The description adds that this is a rename operation, meaning it replaces the list title without deleting the list. It does not mention side effects on contained tasks or permissions, but annotations carry the core safety profile.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single five-word sentence with no filler. The operation is front-loaded and every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter rename tool with annotations covering idempotency and non-destructiveness, the description plus schema provide enough to select and invoke it. The lack of an output schema and minimal depth about return values are minor gaps for this low-complexity tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema documents task_list_id well, including how to obtain it. The 'Rename' wording implies the title parameter is the new list name, adding some meaning, but title has no direct schema description and the tool description does not elaborate on it. With 50% schema coverage, this is adequate but not fully compensating.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states a specific verb ('Rename') and resource ('Google task list'), clearly distinguishing it from create_task_list, delete_task_list, and update_task. There is no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the intended use clear: use this tool to rename a task list. It does not explicitly name when not to use it or point to alternatives, but the operation is unique among siblings and the context is intuitive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
14 tool updates
v0.2.0- First observed
clear_completed_tasks - First observed
complete_task - First observed
create_task - First observed
create_task_list - First observed
delete_task - First observed
delete_task_list - First observed
get_task - First observed
get_task_list - First observed
list_task_lists - First observed
list_tasks - First observed
move_task - First observed
reopen_task - First observed
update_task - First observed
update_task_list
TDQS
Tools are mostly distinct with clear resource-action boundaries, especially for task lists versus tasks. The only minor overlap is update_task vs complete_task/reopen_task, since update_task can also patch status.
All tool names follow a consistent verb_noun snake_case pattern (list_, get_, create_, update_, delete_). The naming is predictable and clearly separates task-list operations from task operations.
14 tools is well-scoped for a Google Tasks server, covering full CRUD and lifecycle operations without unnecessary bloat. Each tool earns its place.
The surface covers the full lifecycle for task lists and tasks: create, read, update, delete, plus task-specific operations like complete, reopen, move, and clear completed. No obvious dead ends or missing core operations.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
130AI-native task management: list, create, update and archive tasks with rich context for AI agents
1Manage tasks, Focus Zone, notes, projects, and task history from compatible AI assistants.
Manage Superlist tasks and lists in plain language from any MCP-compatible AI agent.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables LLMs like Claude to manage Google Tasks by listing, creating, updating, completing, and deleting tasks and task lists, including setting due dates and notes.MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to manage Google Tasks through natural language interactions. Supports creating, updating, deleting, searching, and listing tasks with secure OAuth2 authentication.12610MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Google Tasks, including listing, creating, updating, deleting, and completing tasks via the Google Tasks API.82MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to securely authenticate with Google Tasks and perform full CRUD operations on task lists and tasks, including moving tasks and clearing completed tasks.53-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/phamviet86/google-task-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server