Skip to main content
Glama
odise444

Google Tasks MCP Server

by odise444

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
TASKS_WEBHOOK_URLYesApps Script 웹앱 URL
TASKS_DEFAULT_LIST_IDYes기본 목록 ID

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

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
tasks_listA

Google Tasks의 모든 할 일을 조회합니다.

완료된 항목과 미완료 항목을 모두 반환합니다. 각 항목에는 id, 제목, 상태, 마감일, 메모, 목록 이름이 포함됩니다.

Returns:

  • tasks: 할 일 배열 (id, title, status, due, notes, listTitle)

  • total: 전체 개수

  • pending: 미완료 개수

Examples:

  • "할 일 목록 보여줘" -> tasks_list()

  • "Tasks 전체 조회" -> tasks_list()

  • "완료 안 된 것만 보여줘" -> tasks_list() 후 status 필터링

tasks_addA

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: "세부 내용"})

tasks_completeA

Google Tasks의 할 일을 완료 처리합니다.

tasks_list로 조회한 id 값을 사용하세요.

Args:

  • id (string): 완료 처리할 할 일 ID (tasks_list에서 확인)

  • listId (string): 해당 할 일이 속한 목록 ID

Examples:

  • "여권 확인 완료했어" -> tasks_complete({id: "...", listId: "..."})

  • "첫 번째 항목 체크해줘" -> tasks_list() 후 id 확인 -> tasks_complete()

tasks_uncompleteA

완료 처리된 할 일을 미완료 상태로 되돌립니다.

Args:

  • id (string): 되돌릴 할 일 ID

  • listId (string): 목록 ID (선택)

tasks_deleteA

Google Tasks에서 할 일을 영구 삭제합니다. 되돌릴 수 없습니다.

Args:

  • id (string): 삭제할 할 일 ID

  • listId (string): 목록 ID (선택)

Examples:

  • "바이낸스 항목 삭제해줘" -> tasks_list()로 id 확인 -> tasks_delete({id: "..."})

tasks_updateA

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: "새 제목"})

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

MCP directory API

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

curl -X GET 'https://glama.ai/api/mcp/v1/servers/odise444/google-tasks-mcp-server'

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