Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Todoist Lite

БесплатноНе проверен

Minimal Todoist MCP server that provides direct passthrough to the Todoist REST API v2, supporting all HTTP methods via a single tool.

GitHubEmbed

Описание

Minimal Todoist MCP server that provides direct passthrough to the Todoist REST API v2, supporting all HTTP methods via a single tool.

README

Minimal Todoist MCP server with direct API passthrough. Built with pure functional principles and minimal code.

Features

  • ✨ Single tool with direct Todoist REST API v2 passthrough
  • 🚀 Supports all HTTP methods (GET, POST, PUT, PATCH, DELETE)
  • 🔒 CLI --token flag or environment variable authentication
  • 📦 NPX-ready - no installation required
  • 🧪 Comprehensive test suite (property-based + integration + MCP protocol tests)
  • 🎯 Pure functional JavaScript - minimal dependencies
  • 💡 Token-efficient tool descriptions

Getting Your Todoist API Token

  1. Log in to Todoist
  2. Go to Settings → Integrations → Developer
  3. Copy your API token from the "API token" section

Usage

Via NPX (recommended)

npx @sjalq/todoist-mcp-lite --token YOUR_TODOIST_TOKEN

Or with environment variable:

export TODOIST_API_TOKEN=YOUR_TODOIST_TOKEN
npx @sjalq/todoist-mcp-lite

In Claude Desktop config

Add to your ~/.claude.json:

{
  "mcpServers": {
    "todoist": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@sjalq/todoist-mcp-lite"],
      "env": {
        "TODOIST_API_TOKEN": "your_token_here"
      }
    }
  }
}

Or with --token flag:

{
  "mcpServers": {
    "todoist": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@sjalq/todoist-mcp-lite", "--token", "your_token_here"]
    }
  }
}

Tool

The server exposes a single tool: todoist_api

Parameters

  • endpoint (string, required): API endpoint (e.g., /tasks, /projects/123)
  • method (string, required): HTTP method (GET, POST, PUT, PATCH, DELETE)
  • body (object, optional): Request body for POST/PUT/PATCH requests

Response

Returns JSON with:

  • status: HTTP status code
  • ok: boolean indicating success
  • data: Response data from Todoist API (or error object)

Example

{
  "endpoint": "/tasks",
  "method": "POST",
  "body": {
    "content": "Buy milk",
    "due_string": "tomorrow"
  }
}

API Documentation

Full Todoist REST API v2 docs: https://developer.todoist.com/rest/v2

Development

Clone and Install

git clone https://github.com/sjalq/todoist-mcp-lite.git
cd todoist-mcp-lite
npm install

Running Tests

Property-based tests run without API token:

npm test

Integration and MCP protocol tests require a token:

export TODOIST_API_TOKEN=your_token
npm test

Test suite includes:

  • 4 property-based tests (pure function validation)
  • 6 integration tests (real API calls)
  • 4 MCP protocol tests (full server/client interaction)

Local Testing with MCP Inspector

npx @modelcontextprotocol/inspector node index.js --token YOUR_TOKEN

Then open http://localhost:6274 to interactively test the server.

Architecture

Pure functional design with three core functions:

  • getToken(args) - Extract token from CLI args or environment
  • callTodoist(token) - Curried API caller returning async function
  • createServer(apiCall) - MCP server factory with tool registration

Zero mocks, zero state, just functions.

License

ISC - see LICENSE file for details.

Contributing

Issues and PRs welcome at https://github.com/sjalq/todoist-mcp-lite

from github.com/sjalq/todoist-mcp-lite

Установка Todoist Lite

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/sjalq/todoist-mcp-lite

FAQ

Todoist Lite MCP бесплатный?

Да, Todoist Lite MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Todoist Lite?

Нет, Todoist Lite работает без API-ключей и переменных окружения.

Todoist Lite — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Todoist Lite в Claude Desktop, Claude Code или Cursor?

Открой Todoist Lite на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Todoist Lite with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development