Todoist MCP服务器
](https://smithery.ai/server/@abhiz123/todoist-mcp-server)
一种MCP(模型上下文协议)服务器实现,将Claude与Todoist集成在一起,实现了自然语言任务管理。此服务器允许Claude使用日常语言与您的Todoist任务进行交互。
特性
- 自然语言任务管理:使用日常语言创建、更新、完成和删除任务
- 智能任务搜索:使用部分名称匹配查找任务
- 灵活过滤:按截止日期、优先级和其他属性筛选任务
- 丰富的任务详细信息:支持描述、截止日期和优先级
- 直观的错误处理:清晰的反馈,以获得更好的用户体验
安装
通过Smithery安装
通过以下方式自动安装Todoist MCP Server for Claude Desktop 史密瑟里:
npx -y @smithery/cli install @abhiz123/todoist-mcp-server --client claude手动安装
npm install -g @abhiz123/todoist-mcp-server工具
todoist_create_task
创建具有各种属性的新任务:
- 必填:内容(任务标题)
- 可选:描述、截止日期、优先级(1-4)
- 示例:“创建任务‘团队会议’,描述为‘每周同步’,明天到期”
todoist_gets
检索和筛选任务:
- 按截止日期、优先级或项目筛选
- 自然语言日期过滤
- 可选结果限制
- 示例:“显示本周到期的高优先级任务”
todoist_update_task
使用自然语言搜索更新现有任务:
- 按部分名称匹配查找任务
- 更新任何任务属性(内容、描述、截止日期、优先级)
- 示例:“更新下周一到期的会议任务”
todoist_complete_task
使用自然语言搜索将任务标记为已完成:
- 按部分名称匹配查找任务
- 确认完成状态
- 示例:“将文档任务标记为已完成”
todoist_delete_task
使用自然语言搜索删除任务:
- 按名称查找和删除任务
- 确认消息
- 示例:“删除PR审核任务”
设置
获取Todoist API代币
- 登录您的Todoist帐户
- 导航到“设置”→ 集成
- 在“开发者”下找到您的API代币
使用Claude Desktop
添加到您的 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许可证获得许可-请参阅 许可证 文件以获取详细信息。
问题和支持
如果您遇到任何问题或需要支持,请在 .

