Todoist MCP 服务器增强版
集成 Claude 和 Todoist 的 MCP 服务器,支持自然语言任务管理。
快速入门
安装
通过 Smithery 自动安装: 运行以下命令: npx -y @smithery/cli install @Chrusic/todoist-mcp-server-extended --client claude
设置
- 登录 Todoist 账户,获取 API Token。
- 将 Token 添加到 Cline 配置文件中: { "mcpServers": { "todoist": { "command": "npx", "args": ["todoist-mcp-enhanced-server"], "env": { "TODOIST_API_TOKEN": "your_api_token_here" } } } }
示例指令
- 创建任务:"在项目 'Work' 中创建任务 'Review PR'"
- 添加标签:"为任务 'Review PR' 添加标签 'Important'"
- 查看任务:"显示所有带标签 'Important' 的任务"
开发
克隆仓库并构建: git clone https://github.com/Chrusic/todoist-mcp-server-extended.git cd todoist-mcp-server-extended npm install npm run build