G
Google Tasks
Manage Google Tasks lists and items.
·No reviews yet
Share:
About
Auto-generated
Google Tasks is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Google Tasks.
- What is the Google Tasks MCP?
- The Google Tasks MCP allows you to manage your Google Tasks lists and individual task items. You can create, update, and delete tasks across your Google account, integrating Google Tasks functionality into your preferred client application.
- How do I install the Google Tasks MCP in my client?
- The installation process depends on your specific MCP client. Typically, you would clone the repository from https://github.com/zcaceres/gtasks-mcp and follow the client's instructions for adding a local MCP via its stdio transport type. Refer to your client's documentation for detailed setup steps.
- Does the Google Tasks MCP require authentication?
- Yes, this MCP uses OAuth for authentication. You will need to authorize the MCP to access your Google Tasks data through a standard OAuth flow, which will involve granting specific permissions to your Google account.
- What are the core capabilities of the Google Tasks MCP?
- This MCP enables comprehensive management of Google Tasks. You can expect to create new task lists, add new tasks to existing lists, mark tasks as complete, modify task details, and delete tasks. The specific operations depend on the exposed tools.
- Is there a cost associated with using the Google Tasks MCP?
- The Google Tasks MCP itself is open-source and provided by the community, so there is no direct cost for the MCP software. However, usage may be subject to Google's terms of service and any associated costs with your Google account or API usage, if applicable.
Install Google Tasks
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"google-tasks": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-tasks"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"google-tasks": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-tasks"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"google-tasks": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-tasks"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.