Google Tasks MCP is a Model Context Protocol server that enables Claude to interact directly with your Google Tasks. This integration allows Claude to list, search, create, update, and delete tasks in your Google Tasks account, making task management more efficient through natural language interactions. With this MCP, Claude can help you organize your to-do lists, set due dates, mark tasks as complete, and manage your productivity workflow seamlessly. The server handles all the authentication and API interactions with Google Tasks, providing a secure and reliable connection between Claude and your task management system.
Google Tasks MCP provides a bridge between Claude and Google Tasks, allowing the AI to manage your tasks through natural language. The server implements the Model Context Protocol (MCP) specification to enable Claude to interact with Google Tasks API.
The MCP server provides the following tools for interacting with Google Tasks:
Search for specific tasks in your Google Tasks lists.
query
(string) - The search term to find matching tasksRetrieve all tasks from your Google Tasks lists.
cursor
(string, optional) - Pagination cursor for large task listsAdd a new task to Google Tasks.
taskListId
(string, optional) - The ID of the task list to add the task totitle
(string, required) - The title of the new tasknotes
(string, optional) - Additional notes for the taskdue
(string, optional) - Due date for the taskModify an existing task in Google Tasks.
taskListId
(string, optional) - The task list IDid
(string, required) - The task ID to updateuri
(string, required) - The task URItitle
(string, optional) - New title for the tasknotes
(string, optional) - New notes for the taskstatus
(string, optional) - New status ("needsAction" or "completed")due
(string, optional) - New due dateRemove a task from Google Tasks.
taskListId
(string, required) - The task list IDid
(string, required) - The task ID to deleteRemove all completed tasks from a task list.
taskListId
(string, required) - The task list ID to clearCreate a Google Cloud Project
Enable the Google Tasks API
Configure OAuth Consent Screen
https://www.googleapis.com/auth/tasks
Create OAuth Credentials
Install the MCP Server
git clone https://github.com/zcaceres/gtasks-mcp.git
cd gtasks-mcp
npm install
gcp-oauth.keys.json
and place it in the root directorynpm run build
Authenticate with Google
npm run start auth
.gdrive-server-credentials.json
in the project rootFor an automated installation with Claude Desktop:
npx -y @smithery/cli install @zcaceres/gtasks --client claude
To manually configure the MCP server with Claude Desktop:
{
"mcpServers": {
"gtasks": {
"command": "/path/to/node",
"args": [
"/absolute/path/to/gtasks-mcp/dist/index.js"
]
}
}
}
Once installed and configured, you can use Claude to interact with your Google Tasks through natural language. For example:
Claude will use the appropriate tools to interact with your Google Tasks account based on your requests.