Skip to main content
Glama

Google Workspace MCP Server

by ZatesloFL

create_task

Add a new task to a Google Workspace task list using a user’s email, task list ID, and optional details like title, notes, due date, parent task, and sibling position.

Instructions

Create a new task in a task list.

Args: user_google_email (str): The user's Google email address. Required. task_list_id (str): The ID of the task list to create the task in. title (str): The title of the task. notes (Optional[str]): Notes/description for the task. due (Optional[str]): Due date in RFC 3339 format (e.g., "2024-12-31T23:59:59Z"). parent (Optional[str]): Parent task ID (for subtasks). previous (Optional[str]): Previous sibling task ID (for positioning).

Returns: str: Confirmation message with the new task ID and details.

Input Schema

NameRequiredDescriptionDefault
dueNo
notesNo
parentNo
previousNo
task_list_idYes
titleYes
user_google_emailYes

Input Schema (JSON Schema)

{ "properties": { "due": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Due" }, "notes": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Notes" }, "parent": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Parent" }, "previous": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Previous" }, "task_list_id": { "title": "Task List Id", "type": "string" }, "title": { "title": "Title", "type": "string" }, "user_google_email": { "title": "User Google Email", "type": "string" } }, "required": [ "user_google_email", "task_list_id", "title" ], "type": "object" }

Other Tools from Google Workspace MCP Server

Related Tools

    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/ZatesloFL/google_workspace_mcp'

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