Log the MCP JSON-RPC request body as postBody - #23
Merged
Conversation
A bare `POST /mcp` access-log line says nothing about which tool was called. Capture the JSON-RPC request body and emit it on the request's single log line under "postBody". - reqlog.Collector gains SetPostBody/PostBody, mirroring SetQuery/Query, to carry the body from the handler to the access-log middleware. - The /mcp handler buffers the POST body, records it, and restores r.Body so the MCP SDK still reads it in full. - The middleware emits "postBody" via encodePostBody: valid JSON is compacted into a nested object; non-JSON or an over-8KB body is emitted as a bounded JSON string, so the log line always stays valid JSON. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FWtwEsiChrX2aCva9EK54B
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.
A bare
POST /mcpaccess-log line says nothing about which tool was called. Capture the JSON-RPC request body and emit it on the request's single log line under "postBody".Claude-Session: https://claude.ai/code/session_01FWtwEsiChrX2aCva9EK54B