Daylite Claude Connector
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DAYLITE_PASSWORD | Yes | Daylite CalDAV password obtained from Daylite settings | |
| DAYLITE_USERNAME | Yes | Daylite CalDAV username obtained from Daylite settings | |
| DAYLITE_SERVER_URL | No | Daylite CalDAV server URL | https://caldav.marketcircle.net |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| daylite_list_tasksB | Liste alle Tasks/Aufgaben aus Daylite auf. |
| daylite_get_taskA | Rufe einen einzelnen Daylite-Task per URL ab. |
| daylite_create_taskB | Erstelle einen neuen Task in Daylite. |
| daylite_update_taskB | Aktualisiere einen bestehenden Daylite-Task. |
| daylite_delete_taskB | Lösche einen Task aus Daylite. |
| daylite_list_calendarsA | Liste alle verfügbaren Daylite-Kalender auf. |
| daylite_list_appointmentsB | Liste Termine aus Daylite auf. Optional filterbar nach Zeitraum. |
| daylite_get_appointmentA | Rufe einen einzelnen Daylite-Termin per URL ab. |
| daylite_create_appointmentB | Erstelle einen neuen Termin in Daylite. |
| daylite_update_appointmentC | Aktualisiere einen bestehenden Daylite-Termin. |
| daylite_delete_appointmentA | Lösche einen Termin aus Daylite. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
All tools are clearly divided between appointments and tasks, with no overlapping purposes. Each tool's description specifies exactly which resource and action it performs.
All tools follow the pattern 'daylite_<verb>_<resource>' with consistent verb choices (create, delete, get, list, update) and resource names (appointment, task, calendars).
11 tools cover the core CRUD operations for two main resource types (appointments and tasks) plus listing calendars. This is appropriate for a focused connector without being excessive.
For appointments and tasks, the full lifecycle (create, read, update, delete, list) is provided. The inclusion of list_calendars supports appointment creation. No obvious gaps within the stated domain.