Todoist MCP 服务器为 Todoist 提供了 Model Context Protocol (MCP) 支持,借助该服务器,Claude Desktop 及其他 MCP 兼容客户端能够实现高级任务与项目管理,极大提升管理效率。
Todoist MCP 服务器可助力你通过 Claude Desktop 等 MCP 兼容客户端,对 Todoist 进行高级任务和项目管理。使用前,请确保满足以下需求:
若该项目作为 npm 包发布,可直接在你的 Claude Desktop 配置中使用:
{
"mcpServers": {
"todoist": {
"command": "npx",
"args": [
"todoist-mcp"
],
"env": {
"TODOIST_API_TOKEN": "your_todoist_token"
}
}
}
}
TODOIST_API_TOKEN
。git clone https://github.com/yourusername/todoist-mcp.git
cd todoist-mcp
npm install
# 或
yarn install
npm run build
# 或
yarn build
node dist/server.js
{
"mcpServers": {
"todoist": {
"command": "node",
"args": [
"/path/to/todoist-mcp/dist/server.js"
],
"env": {
"TODOIST_API_TOKEN": "your_todoist_token"
}
}
}
}
以下是一些使用该服务器的示例指令:
"Show me my top priority tasks."
"Create labels for my tasks and classify them by project or urgency."
"Move all tasks with the label 'urgent' to the 'Today' section."
"Create a new project called 'Personal Growth' and add a section 'Reading List'."
"List all collaborators for the project 'Team Launch'."
"Add a comment to the task 'Prepare slides' with the content 'Remember to include Q2 results.'"
该项目采用 MIT License。详细信息请参见 LICENSE。