返回 MCP 目录
public公开dns本地运行

Todoist MCP

该项目是一个基于Model Context Protocol的Todoist服务端应用,允许用户通过LLM(如Claude)与Todoist进行交互,支持所有Todoist API功能。

article

README

🚀 Todoist MCP 服务器连接指南

本项目可将 Model Context Protocol 服务器与你的大型语言模型(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 安装

smithery badge

通过 Smithery 在 Claude 桌面应用程序中安装 Todoist MCP 服务器:

npx -y @smithery/cli install @miottid/todoist-mcp --client claude

📥 使用 Glama 安装

help

运行方式说明

cloud

托管运行

托管运行通常表示这个 MCP Server 由服务方环境承载,用户一般按页面提供的连接方式或授权流程接入,不需要在本地长期启动一个 MCP 进程

  1. 打开服务方连接页
  2. 完成授权或复制端点
  3. 在 MCP 客户端中连接
terminal

本地运行 / 其它方式

本地运行通常需要用户在自己的电脑或服务器上安装依赖,把 server_config 复制到 MCP 客户端,并按 env_schema 补齐环境变量、密钥或其它配置

  1. 复制 server_config
  2. 安装所需依赖
  3. 补齐环境变量后重启客户端