此模型上下文协议(MCP)服务器提供了一个连接 Claude 和 Google 任务之间的桥梁,允许您通过 Claude 直接管理您的任务列表和任务。
<a href="https://glama.ai/mcp/servers/@arpitbatra123/mcp-googletasks"> <img width="380" height="200" src="https://gips1.baidu.com/it/u=3018394598,3718508687&fm=3081&app=3081&f=PNG?w=760&h=400" alt="Google 任务 MCP 服务器" /> </a>注意: 本项目中的所有代码(除了某些编辑外)都是通过 Claude 根据我的指示生成的。
此 MCP 服务器提供了以下功能:
list-tasklists - 列出所有任务列表get-tasklist - 获取特定任务列表的详细信息create-tasklist - 创建新的任务列表update-tasklist - 更新现有的任务列表delete-tasklist - 删除任务列表list-tasks - 列出任务列表中的所有任务get-task - 获取特定任务的详细信息create-task - 创建新任务update-task - 更新现有任务delete-task - 删除任务complete-task - 将任务标记为已完成move-task - 移动任务(重新排序或更改父任务)clear-completed-tasks - 清除列表中所有已完成的任务~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"google-tasks": {
"command": "node",
"args": ["/path/to/google-tasks-mcp/build/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your_client_id_here",
"GOOGLE_CLIENT_SECRET": "your_client_secret_here",
"GOOGLE_REDIRECT_URI": "http://localhost:3_000/oauth2callback"
}
}
}
}
替换路径和凭据为您自己的值。
要通过 Smithery 自动安装 Google 任务集成服务器:
npx -y @smithery/cli install @arpitbatra123/mcp-googletasks --client claude
npm install
npm run build
当您首次使用 Google 任务 MCP 服务器时:
authenticate 工具获取授权 URLset-auth-code 工具并输入此代码完成认证请注意,您的认证是基于会话的,并且在每次重启服务器时都会丢失。您需要每次重新认证。

本项目仅供演示用途。自行承担风险。