Google Tasks MCP Server
Provides tools for managing Google Tasks, including listing, adding, completing, uncompleting, deleting, and updating tasks with title, notes, and due dates.
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 ServerShow my pending tasks"
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 Server
Google Tasks를 Claude Code에서 자연어로 관리할 수 있는 MCP 서버입니다. Apps Script 웹훅을 통해 Google Tasks API와 통신합니다.
제공 도구
도구 | 설명 |
| 전체 할 일 조회 (필터: all/pending/completed) |
| 새 할 일 추가 (제목, 메모, 마감일) |
| 완료 처리 |
| 완료 취소 |
| 삭제 |
| 제목/메모/마감일 수정 |
Related MCP server: Google Tasks MCP Server
설치 방법
1. 서버 파일 복사
이 폴더를 원하는 위치에 복사합니다. 예:
C:\Users\사용자명\google-tasks-mcp-server\2. 의존성 설치 및 빌드
npm install
npm run build3. Claude Code에 MCP 등록
방법 A: claude mcp add 명령어 (권장)
claude mcp add google-tasks \
-e TASKS_WEBHOOK_URL="https://script.google.com/macros/s/AKfycbyVoSfsWx3A9qfUQjt8_zM4nreF7ybZ___VZPXhF1x9CFQy1Uga6s3gGCbBOrLJ7esz/exec" \
-e TASKS_DEFAULT_LIST_ID="MDg1NzM1NTk5OTc1NDI4NTQyMzE6MDow" \
-- node "C:/Users/사용자명/google-tasks-mcp-server/dist/index.js"방법 B: 설정 파일 직접 수정
%APPDATA%\Claude\claude_desktop_config.json (또는 Claude Code 설정 파일)에 추가:
{
"mcpServers": {
"google-tasks": {
"command": "node",
"args": ["C:/Users/사용자명/google-tasks-mcp-server/dist/index.js"],
"env": {
"TASKS_WEBHOOK_URL": "https://script.google.com/macros/s/AKfycbyVoSfsWx3A9qfUQjt8_zM4nreF7ybZ___VZPXhF1x9CFQy1Uga6s3gGCbBOrLJ7esz/exec",
"TASKS_DEFAULT_LIST_ID": "MDg1NzM1NTk5OTc1NDI4NTQyMzE6MDow"
}
}
}
}4. Claude Code 재시작
설정 후 Claude Code를 재시작하면 google-tasks MCP 서버가 활성화됩니다.
사용 예시
Claude Code에서 자연어로:
할 일 목록 보여줘
→ tasks_list() 호출
360V BMS CAN 통신 테스트 추가해줘
→ tasks_add({title: "360V BMS CAN 통신 테스트"}) 호출
여권 만료 기간 확인 완료 처리해줘
→ tasks_list()로 id 찾은 뒤 tasks_complete({id: "..."}) 호출
기아오토카 메모에 '레이 리콜 접수 완료' 추가해줘
→ tasks_update({id: "...", notes: "레이 리콜 접수 완료"}) 호출환경 변수
변수 | 설명 | 기본값 |
| Apps Script 웹앱 URL | 코드 내 하드코딩 |
| 기본 목록 ID | 코드 내 하드코딩 |
Available Tools
6 toolstasks_addGoogle Tasks 할 일 추가A
Google Tasks에 새 할 일을 추가합니다.
Args:
title (string): 할 일 제목 (필수)
notes (string): 메모/설명 (선택)
due (string): 마감일 ISO 형식 예) "2026-03-31T00:00:00.000Z" (선택)
listId (string): 추가할 목록 ID (선택, 기본값: 기본 목록)
Returns:
추가된 할 일의 id와 title
Examples:
"BMS 테스트 추가해줘" -> tasks_add({title: "BMS 테스트"})
"내일까지 보고서 작성 추가" -> tasks_add({title: "보고서 작성", due: "2026-03-26T..."})
"메모 포함해서 추가" -> tasks_add({title: "...", notes: "세부 내용"})
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | 마감일 (ISO 8601 형식, 예: 2026-03-31T00:00:00.000Z) | |
| notes | No | 메모 또는 설명 | |
| title | Yes | 할 일 제목 | |
| listId | No | 추가할 목록 ID (기본값: 기본 목록) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate a write operation (readOnlyHint=false), and the description adds useful context by specifying the return value (id and title) and the default behavior for listId (default list). It also provides the due date format. No contradictions 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 well-structured with clear sections for Args, Returns, and Examples. Each section is concise and directly useful, with no filler or redundant content.
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 covers the return value since there is no output schema, provides parameter explanations and examples, and handles a moderate number of parameters. It lacks error-handling or edge-case details, but for a simple creation tool it is sufficiently complete.
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 covers all parameters with descriptions (100% coverage), but the description enhances this with examples for each parameter, clarifies the ISO format for due, and notes the default for listId. This adds practical meaning beyond the raw schema.
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 that it adds a new to-do to Google Tasks ('Google Tasks에 새 할 일을 추가합니다'), using a specific verb and resource. This distinguishes the tool from sibling operations like listing, updating, completing, or deleting tasks.
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 examples of when to use the tool (e.g., adding a task with optional note or due date), but does not explicitly mention alternatives or when not to use it. Sibling tool names are listed in context, but the description itself offers no comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tasks_completeGoogle Tasks 완료 처리AIdempotent
Google Tasks의 할 일을 완료 처리합니다.
tasks_list로 조회한 id 값을 사용하세요.
Args:
id (string): 완료 처리할 할 일 ID (tasks_list에서 확인)
listId (string): 해당 할 일이 속한 목록 ID
Examples:
"여권 확인 완료했어" -> tasks_complete({id: "...", listId: "..."})
"첫 번째 항목 체크해줘" -> tasks_list() 후 id 확인 -> tasks_complete()
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 완료 처리할 할 일 ID | |
| listId | No | 목록 ID (기본값: 기본 목록) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover readOnlyHint=false, idempotentHint=true, and destructiveHint=false, so the description doesn't need to restate those. It adds context that the id must come from tasks_list, which is useful, but it doesn't describe the return value or behavior on invalid ids. Given the annotation coverage, this is adequate but not exceptional.
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 organized with a main statement, usage note, args list, and examples, making it easy to scan. However, the Args section largely duplicates schema descriptions, slightly lengthening the text without adding new information.
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 'complete a task' tool, the description covers purpose, prerequisites, parameters, and invocation examples. It does not detail error handling or return values, but given the simplicity and the presence of annotations, these are not critical gaps.
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 already describes both parameters (id and listId) with 100% coverage, so the baseline is 3. The description adds value by specifying that id comes from tasks_list and providing concrete examples mapping natural language to parameter values, which helps the agent construct calls correctly.
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 tool's function: 'Google Tasks의 할 일을 완료 처리합니다' (complete a Google Tasks todo). It distinguishes itself from siblings like tasks_add/delete/update/uncomplete by focusing on the completion action, and the examples reinforce the specific use case.
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?
It provides an explicit prerequisite: use the id from tasks_list, which guides the agent on the required workflow. The examples show when the tool should be selected (e.g., '여권 확인 완료했어'), offering clear context for invocation. It doesn't explicitly mention alternatives like tasks_uncomplete, but the workflow is clear enough for a simple tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tasks_deleteGoogle Tasks 삭제ADestructive
Google Tasks에서 할 일을 영구 삭제합니다. 되돌릴 수 없습니다.
Args:
id (string): 삭제할 할 일 ID
listId (string): 목록 ID (선택)
Examples:
"바이낸스 항목 삭제해줘" -> tasks_list()로 id 확인 -> tasks_delete({id: "..."})
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 삭제할 할 일 ID | |
| listId | No | 목록 ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already include destructiveHint=true. The description adds '영구 삭제' (permanently delete) and '되돌릴 수 없습니다' (irreversible), providing context beyond the annotation about the severity of the action. 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 compact and well-structured: a clear two-sentence introduction, a concise parameter list, and a practical example. Every sentence earns its place, with no unnecessary filler.
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 deletion tool with no output schema, the description covers the purpose, parameters, and an example workflow. It is sufficient for an agent to select and invoke the tool, though the optional listId could be explained in more depth.
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% for both id and listId, so the baseline is 3. The description repeats the parameter descriptions from the schema without adding new semantic details, though the example illustrates usage. It does not fully compensate for any gaps.
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 'Google Tasks에서 할 일을 영구 삭제합니다' (permanently deletes a task) and '되돌릴 수 없습니다' (cannot be undone), using a specific verb and resource. It distinguishes itself from sibling tools like tasks_update and tasks_complete by focusing on deletion.
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 example workflow 'tasks_list()로 id 확인 -> tasks_delete({id: "..."})' provides clear context on when to use the tool (after listing tasks to obtain the ID). However, it does not explicitly discuss alternatives or when not to use it, but the destructive nature is highlighted.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tasks_listGoogle Tasks 목록 조회ARead-onlyIdempotent
Google Tasks의 모든 할 일을 조회합니다.
완료된 항목과 미완료 항목을 모두 반환합니다. 각 항목에는 id, 제목, 상태, 마감일, 메모, 목록 이름이 포함됩니다.
Returns:
tasks: 할 일 배열 (id, title, status, due, notes, listTitle)
total: 전체 개수
pending: 미완료 개수
Examples:
"할 일 목록 보여줘" -> tasks_list()
"Tasks 전체 조회" -> tasks_list()
"완료 안 된 것만 보여줘" -> tasks_list() 후 status 필터링
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | 조회 필터: all=전체, pending=미완료만, completed=완료만 | all |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint and idempotentHint annotations, the description adds valuable context: it returns both completed and uncompleted items, and includes counts (total, pending). This gives the agent a clear expectation of the response structure.
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 reasonably concise, front-loaded with the main purpose, and well-structured with Returns and Examples sections. The examples are useful, though the misguidance about filtering adds some noise.
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 list tool, the description covers the return fields and gives examples. However, the complete omission of the filter parameter from the description creates a significant information gap, even though the schema documents it. Without mentioning filtering, the agent may not know the tool can filter directly.
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%, but the description does not mention the filter parameter at all. Worse, the example '완료 안 된 것만 보여줘' suggests calling tasks_list() with no arguments and filtering afterwards, which contradicts the schema's filter capability. This is misleading and fails to add meaning beyond the schema.
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 'Google Tasks의 모든 할 일을 조회합니다' (retrieves all Google Tasks), specifying the exact verb and resource. It clearly differentiates from sibling mutation tools (add, complete, delete, update) by focusing on retrieval.
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 concrete examples mapping user intents like '할 일 목록 보여줘' to tasks_list(), which is good practical guidance. However, it doesn't explicitly state when to use this over alternatives, though the read-only nature and examples make it clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tasks_uncompleteGoogle Tasks 완료 취소AIdempotent
완료 처리된 할 일을 미완료 상태로 되돌립니다.
Args:
id (string): 되돌릴 할 일 ID
listId (string): 목록 ID (선택)
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 미완료로 변경할 할 일 ID | |
| listId | No | 목록 ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true, covering the safety profile. The description adds the specific state change but no extra behavioral details (e.g., permissions, error conditions). With annotation coverage, this is adequate.
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, but it includes an Args section that duplicates the schema. Slight redundancy, but overall concise and well-organized.
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 state-change tool with robust annotations and full schema coverage, the description is adequate. It doesn't explain return values, but no output schema exists, and the idempotent hint covers repeated calls. A minor gap is the lack of guidance on when listId is needed.
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 descriptions for both parameters, and the description repeats the same information. It adds no additional meaning beyond the schema, so the 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 clearly states the tool reverts completed tasks to incomplete status, with a specific verb ('되돌립니다') and resource ('할 일'). It is distinct from siblings like tasks_complete and tasks_delete, making its purpose 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?
The description implies its usage for completed tasks that need to be undone, but it does not explicitly state when to use it versus alternatives or provide exclusions. The purpose makes the primary use case evident, but no direct guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tasks_updateGoogle Tasks 수정AIdempotent
Google Tasks의 할 일 제목, 메모, 마감일을 수정합니다.
Args:
id (string): 수정할 할 일 ID
title (string): 새 제목 (선택)
notes (string): 새 메모 (선택)
due (string): 새 마감일 ISO 형식 (선택)
listId (string): 목록 ID (선택)
Examples:
"360V BMS에 메모 추가해줘" -> tasks_update({id: "...", notes: "새 메모"})
"제목 바꿔줘" -> tasks_update({id: "...", title: "새 제목"})
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 수정할 할 일 ID | |
| due | No | 새 마감일 (ISO 8601) | |
| notes | No | 새 메모 | |
| title | No | 새 제목 | |
| listId | No | 목록 ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds no additional behavioral details (e.g., overwrite semantics, clearing fields, or effects on completed tasks). It merely restates the fields and examples, so it adds minimal value beyond 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 well-structured with a clear purpose sentence, an Args list, and examples. Every section serves a purpose; there is no redundancy or filler. The examples are concise and directly demonstrate usage.
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 update operation with no output schema, the description provides sufficient context for basic use: which fields can be updated and example invocations. However, it lacks edge-case guidance (e.g., how to clear a field, whether listId is needed for default list, or behavior on invalid IDs), which would improve completeness.
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 descriptions cover 100% of parameters, but the description adds clarity by explicitly marking optional parameters ('선택') and providing example argument values (e.g., 'id: "..."', 'notes: "새 메모"'). This helps the agent understand how to map natural-language requests to parameters, going beyond the raw schema.
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 it modifies Google Tasks task titles, notes, and due dates, using the verb '수정합니다' (edits). This distinguishes it from sibling tools like tasks_add (create), tasks_complete/uncomplete (status changes), tasks_delete, and tasks_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?
Examples provide concrete usage scenarios ('add a memo', 'change the title') and natural-language mappings, conveying when to call this tool. However, it does not explicitly contrast with siblings such as tasks_complete or tasks_delete, so the when-not-to-use guidance is implicit rather than explicit.
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.
6 tool updates
v1.0.0- First observed
tasks_add - First observed
tasks_complete - First observed
tasks_delete - First observed
tasks_list - First observed
tasks_uncomplete - First observed
tasks_update
TDQS
Each tool targets a distinct action on tasks: list, add, complete, uncomplete, delete, and update. There is no overlap or ambiguity between these operations.
All tool names follow a consistent 'tasks_' + verb pattern (list, add, complete, uncomplete, delete, update). The naming is predictable and uniform.
6 tools is well-scoped for a task management server, covering the main lifecycle operations without unnecessary bloat.
CRUD and status transitions are covered, but tasks_complete requires a listId that tasks_list does not return (only listTitle). This creates a dead end for completing tasks, and there is no tool to list existing lists to obtain IDs.
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
Multiple Google accounts (Gmail, Calendar, Drive, Contacts, Tasks) in one Claude connector.
1Personal CRM for Claude. Contacts live as plain-text files in your own Google Drive.
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
130Manage tasks, Focus Zone, notes, projects, and task history from compatible AI assistants.
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
- AlicenseNot gradedqualityDmaintenanceEnables automation of Google Workspace tasks, including reading/writing sheets, generating Apps Script code, and creating webhook senders, with AI assistance via Claude.1,895MIT
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/odise444/google-tasks-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server