Construct every MCP client through one factory that declares capabilties - #2477
Merged
Conversation
…ties MCP clients were built in four places — tool listing, the connection pool, and both transports of the health check — with three different identities and no capability declaration on any of them. Capabilities have to be identical across all of them, and the file you would reach for is the wrong one: only the pooled client is alive while a tool runs, so a server-initiated request can only ever reach that one. A capability added to the listing client would look declared and never fire. Adds `createMcpClient`, the single construction point, and routes all four sites through it. The session and health identities stay distinct, since servers can see the difference. The declared set is deliberately empty, which is what the SDK already defaulted to, so nothing changes on the wire today. It exists so elicitation and sampling have one obvious place to be added — and a comment saying they must arrive with their handlers, because a capability declared without one makes servers issue a request the SDK can only answer with method-not-found.
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.
MCP clients were built in four places — tool listing, the connection pool, and both transports of the health check — with three different identities and no capability declaration on any of them. Capabilities have to be identical across all of them, and the file you would reach for is the wrong one: only the pooled client is alive while a tool runs, so a server-initiated request can only ever reach that one. A capability added to the listing client would look declared and never fire.
Adds
createMcpClient, the single construction point, and routes all four sites through it. The session and health identities stay distinct, since servers can see the difference.The declared set is deliberately empty, which is what the SDK already defaulted to, so nothing changes on the wire today. It exists so elicitation and sampling have one obvious place to be added — and a comment saying they must arrive with their handlers, because a capability declared without one makes servers issue a request the SDK can only answer with method-not-found.