C# SDK: multi-server interceptor chain orchestration per SEP#18
Open
PederHP wants to merge 1 commit into
Open
Conversation
The SEP chain execution pattern discovers interceptors from one or more MCP servers, merges them into a single chain sorted globally by priorityHint (alphabetical tie-break), and routes each interceptor/invoke to the server hosting it. The SDK previously ran each client's full chain sequentially, so cross-server priorities were ignored and each server's validations only saw its own mutations. - The orchestrator now operates on chain entries (descriptor + invoker), mirroring the SEP's ChainEntry, with one global sort across servers. - New public InterceptorChain/InterceptorChainEntry API: parallel fail-closed discovery via interceptors/list on every server, then merged execution. Duplicate names across servers are not deduplicated; each entry invokes on its own host. - InterceptorChainRunner (gateway + InterceptingMcpClient) now executes one merged chain instead of per-client sequential chains; single-client ExecuteChainAsync delegates to the same path unchanged. Behavior changes for multi-client gateways: validations from all servers run as one parallel batch after all mutations, sinks run once per phase, TimeoutMs bounds the whole merged chain, and any server's list failure fails the chain. Closes #15. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
9a916c6 to
e1bd0ec
Compare
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.
Addresses the third item of #15 ("Chain orchestrator only supports one MCP server").
What changed
The SEP's chain execution pattern requires: discover via
interceptors/liston one or more servers → merge & sort all interceptors into a single chain bypriorityHint(ascending, alphabetical tie-break) → invoke each interceptor on the server that hosts it (mutations sequential with payload chaining, validations parallel) → aggregate one result. The SDK previously ran each client's entire chain sequentially, so a-1000mutation on server 2 ran after a+1000mutation on server 1, and each server's validations only saw its own server's mutations.InterceptorChainOrchestrator, internal): now operates on chain entries — descriptor + invoker routing to its host — mirroring the SEP'sChainEntry, with one global sort across all filtered entries. The stable sort preserves caller-supplied server order for exact ties.InterceptorChain/InterceptorChainEntry):DiscoverAsynclists from every server in parallel (fail-closed: any list failure throws rather than silently dropping a server's interceptors), instanceExecuteAsyncruns prebuilt entries (a future caching seam), and a one-shot staticExecuteAsync(servers, params)does discover + execute.InterceptorChainRunner(used by the gateway andInterceptingMcpClient): one merged chain instead of the per-client sequential loop. The single-clientclient.ExecuteChainAsync(...)extension keeps its signature and delegates to the same path (still 1 list + N invokes).InterceptorName; documented).Behavior changes for multi-client gateways
TimeoutMsbounds the whole merged chain, not each per-client sub-chain.interceptors/listfailure fails the chain up-front (fail-closed).interceptors/listcalls + Ninterceptor/invokecalls.Testing
dotnet testfromcsharp/sdk/: 97 passing (was 87 after #17). New coverage:InterceptorChainTests(real in-memory servers): discovery merge with server attribution, merged execution order, fail-closed discovery, single-client path equivalence.Closes #15.
🤖 Generated with Claude Code