Google Tasks MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_task_listsA | List all Google Task lists for the authenticated user. |
| list_tasksC | List tasks in a task list. Optionally filter by status or search query. |
| get_taskC | Get a single task by ID. |
| create_taskB | Create a new task in a task list. |
| update_taskB | Update an existing task. Only supply the fields you want to change. |
| complete_taskB | Mark a task as completed (shortcut for update_task). |
| reopen_taskB | Reopen (un-complete) a completed task. |
| delete_taskC | Permanently delete a task. |
| clear_completed_tasksC | Clear all completed tasks from a task list. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Most tools map cleanly to distinct actions and resources. complete_task and reopen_task overlap somewhat with update_task, but their specialized status-only purpose is clearly documented.
All tools follow a consistent verb_noun pattern using snake_case, such as list_tasks, create_task, update_task, and clear_completed_tasks. No naming conventions are mixed.
Nine tools is a well-scoped size for a Google Tasks MCP server. Each tool covers a core task management operation without unnecessary bloat.
Task-level lifecycle coverage is strong: list, get, create, update, delete, complete, and reopen are all present. However, task list management is limited to listing lists; there is no way to create, rename, or delete a task list, which is a notable gap for this domain.