Back to MCP directory
publicPublicdnsLocal runtime

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

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client