Todoist-MCP 服务器(待办事项自然语言管理工具)添加福利群:解决AI开发者的「MCP实战痛点」这是一个实现了 MCP(Model Context Protocol)协议的服务器,它将 Claude 与 Todoist 集成在一起,从而实现自然语言任务管理。该服务器允许 Claude 使用日常语言与您的 Todoist 任务进行交互。
要通过 Smithery 自动为 Claude 桌面版安装 Todoist MCP 服务器:
npx -y @smithery/cli install @abhiz123/todoist-mcp-server --client claude
npm install -g @abhiz123/todoist-mcp-server
创建具有各种属性的新任务:
检索并筛选任务:
使用自然语言搜索更新现有任务:
使用自然语言搜索标记任务为已完成:
使用自然语言搜索移除任务:
添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"todoist": {
"command": "npx",
"args": ["-y", "@abhiz123/todoist-mcp-server"],
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}

"Create task 'Team Meeting'" "Add task 'Review PR' due tomorrow at 2pm" "Create high priority task 'Fix bug' with description 'Critical performance issue'"
"Show all my tasks" "List tasks due today" "Get high priority tasks" "Show tasks due this week"
"Update documentation task to be due next week" "Change priority of bug fix task to urgent" "Add description to team meeting task"
"Mark the PR review task as complete" "Complete the documentation task"
"Delete the PR review task" "Remove meeting prep task"
# Clone the repository
git clone https://github.com/abhiz123/todoist-mcp-server.git
# Navigate to directory
cd todoist-mcp-server
# Install dependencies
npm install
# Build the project
npm run build

欢迎贡献!随时提交 Pull Request。
本项目根据 MIT 许可证发布 - 详见 LICENSE 文件。
如果您遇到任何问题或需要支持,请在 GitHub 仓库上提交一个 issue。