From 437bd9182620b0eae2958629a14609cc9c34a82d Mon Sep 17 00:00:00 2001 From: Nino Risteski <95188570+NinoRisteski@users.noreply.github.com> Date: Thu, 6 Mar 2025 12:29:05 +0100 Subject: [PATCH] Update types.py excluded prompts/get change --- src/mcp/types.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mcp/types.py b/src/mcp/types.py index f043fb10a..411a80596 100644 --- a/src/mcp/types.py +++ b/src/mcp/types.py @@ -42,7 +42,7 @@ class RequestParams(BaseModel): class Meta(BaseModel): progressToken: ProgressToken | None = None """ - If specified, the caller is requesting out-of-band progress notifications for + If specified, the caller requests out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications. @@ -782,7 +782,7 @@ class ModelHint(BaseModel): class ModelPreferences(BaseModel): """ - The server's preferences for model selection, requested of the client during + The server's preferences for model selection, requested by the client during sampling. Because LLMs can vary along multiple dimensions, choosing the "best" model is @@ -1015,7 +1015,7 @@ class CancelledNotification( Notification[CancelledNotificationParams, Literal["notifications/cancelled"]] ): """ - This notification can be sent by either side to indicate that it is cancelling a + This notification can be sent by either side to indicate that it is canceling a previously-issued request. """