@@ -726,11 +726,11 @@ export interface ToolListChangedNotification extends Notification {
726
726
727
727
/**
728
728
* Additional properties describing a Tool to clients.
729
- *
730
- * NOTE: all properties in ToolAnnotations are **hints**.
731
- * They are not guaranteed to provide a faithful description of
729
+ *
730
+ * NOTE: all properties in ToolAnnotations are **hints**.
731
+ * They are not guaranteed to provide a faithful description of
732
732
* tool behavior (including descriptive properties like `title`).
733
- *
733
+ *
734
734
* Clients should never make tool use decisions based on ToolAnnotations
735
735
* received from untrusted servers.
736
736
*/
@@ -742,27 +742,27 @@ export interface ToolAnnotations {
742
742
743
743
/**
744
744
* If true, the tool does not modify its environment.
745
- *
745
+ *
746
746
* Default: false
747
747
*/
748
748
readOnlyHint ?: boolean ;
749
749
750
750
/**
751
751
* If true, the tool may perform destructive updates to its environment.
752
752
* If false, the tool performs only additive updates.
753
- *
753
+ *
754
754
* (This property is meaningful only when `readOnlyHint == false`)
755
- *
755
+ *
756
756
* Default: true
757
757
*/
758
758
destructiveHint ?: boolean ;
759
759
760
760
/**
761
- * If true, calling the tool repeatedly with the same arguments
761
+ * If true, calling the tool repeatedly with the same arguments
762
762
* will have no additional effect on the its environment.
763
- *
763
+ *
764
764
* (This property is meaningful only when `readOnlyHint == false`)
765
- *
765
+ *
766
766
* Default: false
767
767
*/
768
768
idempotentHint ?: boolean ;
@@ -772,7 +772,7 @@ export interface ToolAnnotations {
772
772
* entities. If false, the tool's domain of interaction is closed.
773
773
* For example, the world of a web search tool is open, whereas that
774
774
* of a memory tool is not.
775
- *
775
+ *
776
776
* Default: true
777
777
*/
778
778
openWorldHint ?: boolean ;
@@ -1217,6 +1217,7 @@ export type ClientRequest =
1217
1217
| GetPromptRequest
1218
1218
| ListPromptsRequest
1219
1219
| ListResourcesRequest
1220
+ | ListResourceTemplatesRequest
1220
1221
| ReadResourceRequest
1221
1222
| SubscribeRequest
1222
1223
| UnsubscribeRequest
@@ -1252,6 +1253,7 @@ export type ServerResult =
1252
1253
| CompleteResult
1253
1254
| GetPromptResult
1254
1255
| ListPromptsResult
1256
+ | ListResourceTemplatesResult
1255
1257
| ListResourcesResult
1256
1258
| ReadResourceResult
1257
1259
| CallToolResult
0 commit comments