server: add max_body_bytes guard for HTTP request bodies#2012
Open
TheodorNEngoy wants to merge 6 commits intomodelcontextprotocol:mainfrom
Open
server: add max_body_bytes guard for HTTP request bodies#2012TheodorNEngoy wants to merge 6 commits intomodelcontextprotocol:mainfrom
TheodorNEngoy wants to merge 6 commits intomodelcontextprotocol:mainfrom
Conversation
f5f9c67 to
b13960a
Compare
Author
|
Pushed a follow-up to fix CI:
Coverage now reports 100% locally (matches CI settings), so checks should go green on the next run. |
Author
|
Clarifying my previous comment (shell ate the backticks):
|
Author
|
Follow-up (CI): windows py3.12 locked was failing in I updated that test to poll briefly for file growth and to always terminate the process tree in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a configurable request-body size cap to avoid unbounded
await request.body()buffering for MCP HTTP endpoints.Changes:
max_body_bytes(default:1_000_000,Nonedisables) to:StreamableHTTPServerTransportStreamableHTTPSessionManager+Server.streamable_http_app()plumbingMCPServer.streamable_http_app()/MCPServer.run(..., transport='streamable-http')passthroughSseServerTransportMCPServer.sse_app()/MCPServer.run(..., transport='sse')passthrough/registerhandler viaClientRegistrationOptions.max_body_bytes413 Payload Too Large(withConnection: close) when exceeded./register.Local checks:
uv run ruff check src testsuv run pyrightuv run pytest -q tests/server/test_streamable_http_manager.py tests/server/test_sse_max_body_bytes.py tests/server/auth/test_error_handling.py