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 7c2125d commit 814a05dCopy full SHA for 814a05d
src/mcp/client/transport_session.py
@@ -18,6 +18,7 @@ async def initialize(self) -> types.InitializeResult:
18
19
@abstractmethod
20
async def send_ping(self) -> types.EmptyResult:
21
+ """Send a ping request."""
22
raise NotImplementedError
23
24
@@ -28,6 +29,7 @@ async def send_progress_notification(
28
29
total: float | None = None,
30
message: str | None = None,
31
) -> None:
32
+ """Send a progress notification."""
33
34
35
0 commit comments