Command Palette

Search for a command to run...

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

Minitask

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

Lightweight CalDAV task manager desktop app (PySide6/Qt6) with built-in MCP Server

GitHubEmbed

Описание

Lightweight CalDAV task manager desktop app (PySide6/Qt6) with built-in MCP Server

README

Python License Platform MCP

A lightweight CalDAV task manager desktop application built with PySide6 (Qt6) and python-caldav — with built-in MCP server so any MCP-compatible AI client can manage your tasks directly via natural language.

MiniTask Screenshot

Features

  • MCP server included — manage tasks via natural language from any MCP-compatible client: Claude Code, Claude Desktop, Cowork, and more
  • Connect to any CalDAV server (e.g. Nextcloud, mailbox.org, Radicale)
  • Create, edit, and complete tasks with due dates and free-text notes
  • Calendar popup for date selection
  • Postpone tasks by +1 day, +1 week, or +1 month
  • Set any task to today with one click
  • "Catch Up" — set all overdue tasks to today at once
  • Star/prioritize important tasks
  • Color-coded due dates (overdue, today, future)
  • Search and filter tasks
  • Auto-sync every 60 seconds (toggleable)
  • Undo completed (deleted) tasks — optional, with a configurable grace period (1–60 s)
  • Keyboard shortcuts for fast workflow
  • Always-on-top mode
  • Secure credential storage via system keyring
  • Remembers window position between sessions

Requirements

  • Python 3.12+
  • A CalDAV server with task/todo support

Installation

git clone https://github.com/Stefan-Schmidbauer/minitask
cd minitask

Linux (Debian/Ubuntu)

MiniTask uses Quickstrap for installation and startup.

./install.py   # run once to set up the virtual environment
./start.sh     # start the app

./install.py interactively sets up a virtual environment and installs system dependencies (libgl1, libegl1) and Python packages (PySide6, caldav, icalendar, keyring, mcp). After that, use ./start.sh to launch the app.

Windows (manual)

The desktop app works on Windows, but there is no automated installer. Set up manually:

  1. Install Python 3.12+

    • Run the installer and make sure to check "Add Python to PATH" — without this, the python command won't be recognized in the terminal
    • Verify the installation by opening a terminal (Win+Rcmd) and running python --version
  2. Open a terminal in the MiniTask directory and run:

python -m venv venv
venv\Scripts\pip install PySide6 caldav icalendar keyring mcp

This installs Qt (via PySide6) along with all required libraries — no separate Qt installation needed. On Windows, PySide6 bundles everything including the Qt DLLs, unlike Linux where some system libraries (libgl1, libegl1) must be installed separately.

Note: During python -m venv venv Windows may show an "Access Denied" dialog for a file called lib64. This is a symlink Python tries to create but doesn't need on Windows — click Skip and the virtual environment will work fine. To prevent this dialog permanently, enable Developer Mode in Windows Settings → System → For developers.

Usage

Linux:

./start.sh

Windows:

venv\Scripts\python main.py

On first launch, you will be prompted to enter your CalDAV server credentials and select a calendar.

Developer Mode (Linux)

source quickstrap/activate.sh
python main.py

Keyboard Shortcuts

Shortcut Action
Ctrl+N Focus new task input
Ctrl+F Focus search
F5 Refresh tasks
Ctrl+Z Undo last completion
Escape Clear search

Configuration

Settings are stored in:

  • Linux: ~/.config/minitask/settings.json
  • Windows: %APPDATA%/minitask/settings.json

Credential Storage

Passwords are stored securely in the system keyring and never written to the config file in plain text:

  • Linux: GNOME Keyring or KWallet (accessed via subprocess to avoid Qt/D-Bus conflicts). A running keyring service is required (e.g. gnome-keyring, kwallet).
  • Windows: Windows Credential Manager, accessed directly — no additional setup needed.

MCP Server (Claude Code Integration)

MiniTask includes an MCP server (mcp_server.py) that lets Claude manage your tasks directly via natural language.

Prerequisites

  1. Configure credentials — one of the following:
    • Desktop app already set up: nothing to do, the MCP server reads credentials from the same keyring
    • Without desktop app (e.g. MCP-only on Windows, or headless Linux): run setup_credentials.py once:
# Linux
venv/bin/python setup_credentials.py

# Windows
venv\Scripts\python setup_credentials.py

setup_credentials.py is a small terminal script that asks for your CalDAV URL, username, and password, tests the connection, lets you pick a calendar, and saves everything securely to the system keyring (GNOME Keyring / KWallet on Linux, Windows Credential Manager on Windows). Run it once — or again whenever your credentials change.

Setup

Copy the example for your system to .mcp.json and adjust the paths:

  • Linux: copy .mcp.json.linux.example
  • Windows: copy .mcp.json.windows.example

Linux example (.mcp.json.linux.example):

{
  "mcpServers": {
    "minitask": {
      "command": "/home/yourname/minitask/venv/bin/python3",
      "args": ["/home/yourname/minitask/mcp_server.py"]
    }
  }
}

Windows example (.mcp.json.windows.example):

{
  "mcpServers": {
    "minitask": {
      "command": "C:\\Users\\YourName\\minitask\\venv\\Scripts\\python.exe",
      "args": ["C:\\Users\\YourName\\minitask\\mcp_server.py"]
    }
  }
}

Restart Claude Code — the MCP server starts automatically as a subprocess, no separate service needed.

Example

Claude catching up on overdue tasks "Catch me up on my tasks" — Claude moves overdue items to today and returns a structured overview.

Claude adding, rescheduling, and completing tasks Add a starred task, push a deadline, mark one done — natural language, no context switching.

Available Tools

Tool Description
list_tasks Show all open tasks
create_task Create a task (title + optional due date and note)
update_task Edit a task — pass only the fields you want to change (title, date, star, and/or note); the rest is kept
complete_task Mark a task as done — removes it, same as checking it off in the app
catchup Move all overdue tasks to today — same as "Catch Up" in the app
list_calendars (Setup) List all calendars on the CalDAV server
set_calendar (Setup) Switch to a different calendar

See MCP.md for the full tool reference (parameters, return values, and example prompts).

Credential Security

The MCP server reads credentials from the same system keyring as the desktop app — the password is never stored in plain text:

  • Linux: GNOME Keyring or KWallet
  • Windows: Windows Credential Manager (backed by DPAPI, encrypted with your Windows login)

Third-party Libraries

MiniTask is built on the following open-source libraries:

Library Description License
PySide6 Qt6 bindings for Python — UI framework LGPL-3.0 / GPL-2.0 / GPL-3.0
caldav CalDAV client library MIT
icalendar iCalendar format parser and generator BSD
keyring Secure credential storage via system keyring MIT
mcp Model Context Protocol SDK (MCP server) MIT

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.

License

MIT License - see LICENSE for details.

Authors

  • Stefan Schmidbauer
  • Claude (AI Assistant by Anthropic)

from github.com/Stefan-Schmidbauer/minitask

Установка Minitask

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

▸ github.com/Stefan-Schmidbauer/minitask

FAQ

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

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

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

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

Minitask — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

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

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

Похожие MCP

Notion

Read and write pages in your workspace

Notionавтор: Notion

Linear

Issues, cycles, triage — from Claude

Linearавтор: Linear
Pro

Google Drive

Search and read your Drive files

Googleавтор: Google

mindsdb/mindsdb

Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).

mindsdbавтор: mindsdb

fulcradynamics/fulcra-context-mcp

MCP server for accessing personal health and biometric data including sleep stages, heart rate, HRV, glucose, workouts, calendar, and location via the Fulcra Li

fulcradynamicsавтор: fulcradynamics

aymericzip/intlayer

A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, access to the docs.

aymericzipавтор: aymericzip

rinadelph/Agent-MCP

A framework for creating multi-agent systems using MCP for coordinated AI collaboration, featuring task management, shared context, and RAG capabilities.

rinadelphавтор: rinadelph

WhenLabs-org/when

Developer toolkit: auto-detect stack for AI context files, catch port conflicts, validate .env schemas, spot docs drift, audit dependency licenses, and time cod

WhenLabs-orgавтор: WhenLabs-org

Beltran12138/wecom-docs-mcp-server

WeCom (Enterprise WeChat) document operations via MCP: create, read, and edit Docs and Smartsheets (9 tools). Fills the doc-CRUD gap — existing WeCom MCP server

Beltran12138автор: Beltran12138

madbonez/caldav-mcp

Universal MCP server for CalDAV protocol integration. Works with any CalDAV-compatible calendar server including Yandex Calendar, Google Calendar (via CalDAV),

madbonezавтор: madbonez

Compare Minitask with

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

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

Автор?

Embed-бейдж для README

Похожее

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