Back to MCP directory
publicPublicdnsLocal runtime

todoist-mcp

一个连接LLM与Todoist的MCP服务项目,支持通过Claude桌面应用管理Todoist任务。

article

README

🚀 Todoist MCP 服务器

将此 模型上下文协议 服务器连接到您的大型语言模型(LLM),从而实现与 Todoist 的交互。该服务器支持从 Todoist TypeScript 客户端 提供的所有 API,为您的工作流带来更多便利。

🚀 快速开始

✨ 主要特性

  • 可连接大型语言模型(LLM)与 Todoist,实现两者之间的交互。
  • 支持 Todoist TypeScript 客户端提供的所有 API。

📦 安装指南

构建服务器应用程序

执行以下命令来构建服务器应用程序:

npm install
npm run build

配置 Claude

  1. 您必须安装支持 MCP 的 Claude 桌面应用程序。
  2. 您可以从 Todoist > 设置 > 集成 > 开发者 获取您的 Todoist API 密钥。
  3. 然后,在您的 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 在 Claude 桌面应用程序上安装 Todoist MCP,点击下面的徽章即可进入安装页面: smithery 徽章

也可以使用以下命令进行安装:

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

Glama

您还可以通过 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