Metadata-Version: 2.3
Name: todo-list-mcp
Version: 0.3.0
Summary: Add your description here
Keywords: mcp,model-context-protocol,developer-tools,fastmcp
Author: l0kifs
Author-email: l0kifs <l0kifs91@gmail.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Plugins
Classifier: Natural Language :: English
Requires-Dist: fastmcp>=2.14.2
Requires-Dist: pydantic>=2.11.7
Requires-Dist: httpx>=0.28.1
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: typer>=0.21.1
Requires-Dist: rich>=14.2.0
Requires-Dist: loguru>=0.7.3
Requires-Dist: pydantic-settings>=2.12.0
Requires-Dist: wxpython>=4.2.0
Maintainer: l0kifs
Maintainer-email: l0kifs <l0kifs91@gmail.com>
Requires-Python: >=3.11
Project-URL: Homepage, https://github.com/l0kifs/todo-list-mcp
Project-URL: Documentation, https://github.com/l0kifs/todo-list-mcp/blob/main/README.md
Project-URL: Repository, https://github.com/l0kifs/todo-list-mcp.git
Project-URL: Issues, https://github.com/l0kifs/todo-list-mcp/issues
Project-URL: Changelog, https://github.com/l0kifs/todo-list-mcp/blob/main/CHANGELOG.md
Description-Content-Type: text/markdown

<div align="center">

![todo-list-mcp](https://socialify.git.ci/l0kifs/todo-list-mcp/image?description=1&font=Inter&language=1&name=1&owner=1&pattern=Signal&theme=Light)

# Todo List MCP Server

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)

</div>

A Model Context Protocol (MCP) server that provides:
- **Todo List Management**: Persistent todo list with SQLite database storage
- **Reminder Service**: Desktop notifications with optional sound alerts
- **Cross-platform Sound System**: Sound playback on Windows, macOS, and Linux

## Quick Start

### Prerequisites
- [UV](https://docs.astral.sh/uv/) installed
- Python 3.11 or higher

### Configuration
The application stores data in `~/.todo-list-mcp/` directory:
- `todo_list.db` - SQLite database for tasks
- `reminder_daemon/` - Reminder daemon data

No additional configuration is required unless you want to customize the database location.
You can optionally create a `.env` file in `~/.todo-list-mcp/` with:
```env
TODO_LIST_MCP__DATABASE_URL=sqlite:///path/to/custom/location.db
```

### VSCode IDE Setup
Enter the following details in your `mcp.json` configuration file:

```json
"todo-list-mcp": {
    "type": "stdio",
    "command": "uvx",
    "args": [
        "todo-list-mcp@latest"
    ]
}
```

## Features

### Todo List Management (MCP)
- **SQLite Storage**: Store tasks in a local SQLite database for fast, reliable access
- **Flexible Attributes**: Track title, description, status, priority, urgency, time estimates, due dates, tags, and assignees
- **Smart Filtering**: Query tasks by status, priority, tags, assignee, or due date
- **Lifecycle Management**: Create, read, update, and archive tasks directly via MCP tools
- **Archiving**: Archive completed tasks while preserving all data for future reference

### Reminder System
- **Cross-Platform**: Native visual dialogs for Windows, macOS, and Linux
- **Background Service**: Reliable daemon process ensures timely notifications
- **Persistence**: Local JSON storage in `~/.todo-list-mcp/reminder_daemon/` keeps reminders safe

### Sound System
- **Universal Playback**: Audio alerts on all supported operating systems
- **Built-in Assets**: Includes a chime sound out of the box
- **Advanced Audio**: Support for custom WAV files and loop playback with configurable intervals
