Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/mcp/server/fastmcp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,9 +788,7 @@ async def handle_streamable_http(
await self.session_manager.handle_request(scope, receive, send)

async def streamable_http_endpoint(request: Request):
return await handle_streamable_http(
request.scope, request.receive, request._send
) # type: ignore[reportPrivateUsage]
return await handle_streamable_http(request.scope, request.receive, request._send) # type: ignore[reportPrivateUsage]

# Normalize the main path (no trailing slash)
_main_path = self.settings.streamable_http_path.removesuffix("/")
Expand Down