【技术文档摘要】:
[!IMPORTANT] 弃用通知:此仓库已弃用。
Doist现在在新仓库中维护官方的Todoist MCP工具:Doist/todoist-ai。请迁移至新工具以获得持续支持和更新。
更多详情请参阅这里。
将这个模型上下文协议服务器连接到您的LLM,以便与Todoist进行交互。
此集成实现了Todoist TypeScript客户端提供的所有API,提供以下访问:
构建服务器应用:
npm install
npm run build
配置Claude:
您必须安装支持MCP的Claude桌面应用程序。
您可以从Todoist > 设置 > 集成 > 开发者获取您的Todoist API密钥。
然后,在您的claude_desktop_config.json中添加一个新的MCP服务器:
{
"mcpServers": {
"todoist-mcp": {
"command": "node",
"args": ["/path/to/repo/build/index.js"],
"env": {
"TODOIST_API_KEY": "your_todoist_api_key"
}
}
}
}
现在您可以启动Claude桌面应用程序并请求更新Todoist。
使用Smithery在Claude Desktop上安装Todoist MCP:
npx -y @smithery/cli install @miottid/todoist-mcp --client claude