dav-mcp 3.0.4 → 3.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dav-mcp",
3
- "version": "3.0.4",
4
- "mcpName": "io.github.philflowio/dav-mcp",
3
+ "version": "3.0.6",
4
+ "mcpName": "io.github.PhilflowIO/dav-mcp",
5
5
  "description": "Complete DAV integration for AI - Calendar (CalDAV), Contacts (CardDAV), and Tasks (VTODO) management via MCP protocol",
6
6
  "type": "module",
7
7
  "main": "src/server-stdio.js",
@@ -7,17 +7,17 @@ import { formatSuccess } from '../../formatters.js';
7
7
  */
8
8
  export const deleteEvent = {
9
9
  name: 'delete_event',
10
- description: 'Delete a calendar event permanently. Requires event URL and etag',
10
+ description: 'Permanently delete a calendar event. WARNING: This action cannot be undone — the event is removed from the server immediately. Use only when the user explicitly requests deletion. Obtain the event URL and etag from list_events or calendar_query first. The etag ensures no conflicting changes occurred since the event was last retrieved.',
11
11
  inputSchema: {
12
12
  type: 'object',
13
13
  properties: {
14
14
  event_url: {
15
15
  type: 'string',
16
- description: 'The URL of the event to delete',
16
+ description: 'Full URL of the event to delete. Obtain from list_events or calendar_query response.',
17
17
  },
18
18
  event_etag: {
19
19
  type: 'string',
20
- description: 'The etag of the event',
20
+ description: 'ETag of the event for conflict detection. Obtain from the same response as the event URL. Ensures no changes were made since retrieval.',
21
21
  },
22
22
  },
23
23
  required: ['event_url', 'event_etag'],
@@ -7,17 +7,17 @@ import { formatSuccess } from '../../formatters.js';
7
7
  */
8
8
  export const deleteContact = {
9
9
  name: 'delete_contact',
10
- description: 'Delete a contact (vCard) permanently. Requires contact URL and etag',
10
+ description: 'Permanently delete a contact (vCard) from the address book. WARNING: This action cannot be undone — the contact is removed from the server immediately. Use only when the user explicitly requests deletion. Obtain the vCard URL and etag from list_contacts or addressbook_query first. The etag ensures no conflicting changes occurred since the contact was last retrieved.',
11
11
  inputSchema: {
12
12
  type: 'object',
13
13
  properties: {
14
14
  vcard_url: {
15
15
  type: 'string',
16
- description: 'The URL of the vCard to delete',
16
+ description: 'Full URL of the vCard to delete. Obtain from list_contacts or addressbook_query response.',
17
17
  },
18
18
  vcard_etag: {
19
19
  type: 'string',
20
- description: 'The etag of the vCard',
20
+ description: 'ETag of the vCard for conflict detection. Obtain from the same response as the vCard URL. Ensures no changes were made since retrieval.',
21
21
  },
22
22
  },
23
23
  required: ['vcard_url', 'vcard_etag'],
@@ -7,17 +7,17 @@ import { formatSuccess } from '../../formatters.js';
7
7
  */
8
8
  export const deleteTodo = {
9
9
  name: 'delete_todo',
10
- description: 'Delete a todo/task permanently from the calendar. Cannot be undone. Requires todo URL and etag.',
10
+ description: 'Permanently delete a todo/task from the calendar. WARNING: This action cannot be undone — the todo is removed from the server immediately. Use only when the user explicitly requests deletion. Obtain the todo URL and etag from list_todos or todo_query first. The etag ensures no conflicting changes occurred since the todo was last retrieved.',
11
11
  inputSchema: {
12
12
  type: 'object',
13
13
  properties: {
14
14
  todo_url: {
15
15
  type: 'string',
16
- description: 'The URL of the todo to delete',
16
+ description: 'Full URL of the todo to delete. Obtain from list_todos or todo_query response.',
17
17
  },
18
18
  todo_etag: {
19
19
  type: 'string',
20
- description: 'The current ETag of the todo',
20
+ description: 'ETag of the todo for conflict detection. Obtain from the same response as the todo URL. Ensures no changes were made since retrieval.',
21
21
  },
22
22
  },
23
23
  required: ['todo_url', 'todo_etag'],