Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEBUG | No | Set to "true" to enable debug logging | |
| COZI_PASSWORD | Yes | Your Cozi account password | |
| COZI_USERNAME | Yes | Your Cozi account email |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| cozi_get_lists | Get all Cozi lists (shopping and todo lists) with their items. Returns complete list of all lists including item counts and contents. |
| cozi_get_list | Get a specific Cozi list by ID with all its items. Use this to see the full details of a single list. |
| cozi_create_list | Create a new Cozi list. Can be either a shopping list or a todo list. |
| cozi_delete_list | Delete a Cozi list by ID. This permanently removes the list and all its items. |
| cozi_add_item | Add a new item to a Cozi list. The item will be added to the specified list. |
| cozi_edit_item | Edit the text of an existing item in a Cozi list. |
| cozi_mark_item_complete | Mark an item as complete/done in a Cozi list. This checks off the item. |
| cozi_mark_item_incomplete | Mark an item as incomplete/not done in a Cozi list. This unchecks the item. |
| cozi_remove_item | Remove/delete an item from a Cozi list. This permanently deletes the item. |