You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+109Lines changed: 109 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ The server provides integration with multiple Nextcloud apps, enabling LLMs to i
13
13
| App | Support Status | Description |
14
14
|-----|----------------|-------------|
15
15
|**Notes**| ✅ Full Support | Create, read, update, delete, and search notes. Handle attachments via WebDAV. |
16
+
|**Calendar**| ✅ Full Support | Complete calendar integration - create, update, delete events. Support for recurring events, reminders, attendees, and all-day events via CalDAV. |
16
17
|**Tables**| ⚠️ Row Operations | Read table schemas and perform CRUD operations on table rows. Table management not yet supported. |
17
18
|**Files (WebDAV)**| ✅ Full Support | Complete file system access - browse directories, read/write files, create/delete resources. |
18
19
@@ -29,6 +30,22 @@ The server provides integration with multiple Nextcloud apps, enabling LLMs to i
29
30
|`nc_notes_delete_note`| Delete a note by ID |
30
31
|`nc_notes_search_notes`| Search notes by title or content |
31
32
33
+
### Calendar Tools
34
+
35
+
| Tool | Description |
36
+
|------|-------------|
37
+
|`nc_calendar_list_calendars`| List all available calendars for the user |
38
+
|`nc_calendar_create_event`| Create a comprehensive calendar event with full feature support (recurring, reminders, attendees, etc.) |
39
+
|`nc_calendar_list_events`|**Enhanced:** List events with advanced filtering (min attendees, duration, categories, status, search across all calendars) |
40
+
|`nc_calendar_get_event`| Get detailed information about a specific event |
41
+
|`nc_calendar_update_event`| Update any aspect of an existing event |
42
+
|`nc_calendar_delete_event`| Delete a calendar event |
43
+
|`nc_calendar_create_meeting`| Quick meeting creation with smart defaults |
44
+
|`nc_calendar_get_upcoming_events`| Get upcoming events in the next N days |
45
+
|`nc_calendar_find_availability`|**New:** Intelligent availability finder - find free time slots for meetings with attendee conflict detection |
0 commit comments