We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f96a92 commit aad44f7Copy full SHA for aad44f7
1 file changed
src/nextcloud_mcp/annotations.py
@@ -2,7 +2,7 @@
2
3
from mcp.types import ToolAnnotations
4
5
-READONLY = ToolAnnotations(readOnlyHint=True)
+READONLY = ToolAnnotations(readOnlyHint=True, destructiveHint=False, idempotentHint=True)
6
ADDITIVE = ToolAnnotations(readOnlyHint=False, destructiveHint=False, idempotentHint=False)
7
ADDITIVE_IDEMPOTENT = ToolAnnotations(readOnlyHint=False, destructiveHint=False, idempotentHint=True)
8
DESTRUCTIVE = ToolAnnotations(readOnlyHint=False, destructiveHint=True, idempotentHint=True)
0 commit comments