You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ModelContextProtocol.Core/Client/McpClient.Methods.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -280,7 +280,7 @@ public ValueTask<GetPromptResult> GetPromptAsync(
280
280
}
281
281
282
282
/// <summary>
283
-
/// Retrieves a list of available prompts from the server.
283
+
/// Retrieves a specific prompt from the MCP server.
284
284
/// </summary>
285
285
/// <param name="requestParams">The request parameters to send in the request.</param>
286
286
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
@@ -549,9 +549,9 @@ public ValueTask<CompleteResult> CompleteAsync(
549
549
}
550
550
551
551
/// <summary>
552
-
/// Unsubscribes from a resource on the server to stop receiving notifications about its changes.
552
+
/// Subscribes to a resource on the server to receive notifications when it changes.
553
553
/// </summary>
554
-
/// <param name="uri">The URI of the resource to which to subscribe.</param>
554
+
/// <param name="uri">The URI of the resource to subscribe to.</param>
555
555
/// <param name="options">Optional request options including metadata, serialization settings, and progress tracking.</param>
556
556
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
557
557
/// <returns>A task that represents the asynchronous operation.</returns>
0 commit comments