diff --git a/schema/schema.json b/schema/schema.json index 58d9fbea3..fb9ade6a7 100644 --- a/schema/schema.json +++ b/schema/schema.json @@ -168,9 +168,6 @@ }, { "$ref": "#/definitions/CompleteRequest" - }, - { - "$ref": "#/definitions/ListRootsRequest" } ] }, diff --git a/schema/schema.ts b/schema/schema.ts index a61b2a089..e26f78da8 100644 --- a/schema/schema.ts +++ b/schema/schema.ts @@ -995,13 +995,13 @@ export type ClientRequest = | SubscribeRequest | UnsubscribeRequest | CallToolRequest - | ListToolsRequest - | ListRootsRequest; + | ListToolsRequest; export type ClientNotification = | ProgressNotification | InitializedNotification | RootsListChangedNotification; + export type ClientResult = EmptyResult | CreateMessageResult | ListRootsResult; /* Server messages */