Metadata-Version: 2.4
Name: kitsalover-mcp
Version: 0.1.0
Summary: MCP server for Kitsalover task management
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp[cli]>=1.0.0
Requires-Dist: python-dotenv>=1.0.0
Description-Content-Type: text/markdown

# kitsalover-mcp

MCP server for [Kitsalover](https://kitsalover.ru) — task management with rooms, subtasks, and notifications.

## Setup

1. Go to **Settings → API токен** in your Kitsalover account and generate a token.

2. Add to your MCP config:

```json
{
  "mcpServers": {
    "kitsalover": {
      "command": "uvx",
      "args": ["kitsalover-mcp"],
      "env": {
        "AGENT_TOKEN": "your_token_here"
      }
    }
  }
}
```

## Available tools

- `list_rooms`, `get_room`
- `list_tasks`, `get_task`, `create_task`, `update_task`
- `complete_task`, `cancel_task`, `take_task`, `start_task`, `delete_task`
- `get_task_history`, `list_trash`, `restore_task`, `delete_task_permanently`
- `list_notes`, `add_note`, `update_note`, `delete_note`
- `add_to_favorites`, `remove_from_favorites`
- `get_calendar`, `get_calendar_month`
- `list_notifications`, `get_unread_count`, `mark_notification_read`, `mark_all_notifications_read`, `clear_all_notifications`
