Back to MCP directory
publicPublicdnsLocal runtime

mikemc_todoist-mcp-server

这是一个Python版本的Todoist MCP服务器,基于TypeScript版本移植而来,通过Python MCP SDK和Todoist Python API提供相同的功能。

article

README

🚀 Todoist MCP 服务器(Python)

这是 TypeScript 版本 Todoist MCP 服务器的 Python 移植版本。该版本借助 Claude 实现了相同功能,同时运用了 Python MCP SDK 和 Todoist Python API。

🚀 快速开始

Todoist MCP 服务器(Python)是 TypeScript 版本的 Python 移植,借助 Claude 实现相同功能,使用 Python MCP SDK 和 Todoist Python API。

📦 安装指南

先决条件

  • Python 3.10+
  • UV 包管理器(安装指南
  • Todoist API 令牌

获取 Todoist API 令牌

  1. 登录你的 Todoist 账户。
  2. 前往设置 → 集成。
  3. 在“开发者”板块找到你的 API 令牌。

使用 Claude Desktop 进行配置

将以下内容添加到 claude_desktop_config.json

{
  "mcpServers": {
    "todoist": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/todoist-mcp-server",
        "run",
        "main.py"
      ],
      "env": {
        "TODOIST_API_TOKEN": "your_todoist_api_token"
      }
    }
  }
}

💻 使用示例

查看当前可用工具

#(对于 Mac)安装 GNU grep 后作为 ggrep
ggrep -Po '(?<=^mcp.tool\(\)\()([^)]+)' main.py
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