feat: Add in memory transport #512
Open
bsorrentino wants to merge 18 commits intomodelcontextprotocol:mainfrom
Open
feat: Add in memory transport #512bsorrentino wants to merge 18 commits intomodelcontextprotocol:mainfrom
bsorrentino wants to merge 18 commits intomodelcontextprotocol:mainfrom
Conversation
This commit introduces a new Maven module, `mcp-inmemory-transport`, which provides an in-memory transport implementation for the Model Context Protocol (MCP). The primary goal of this new module is to facilitate testing of MCP clients and servers without requiring a full network setup. It uses Project Reactor's `Sinks` to simulate the bidirectional communication between a client and a server. The implementation includes: - `InMemoryTransport`: A container for the shared communication sinks. - `InMemoryClientTransport`: An implementation of `McpClientTransport`. - `InMemoryServerTransportProvider`: An implementation of `McpServerTransportProvider`. - `InMemoryTransportTest`: A test class that verifies the end-to-end communication using the new in-memory transport.
…SHOT - use JacksonMcpJsonMapper instead of ObjectMapper - update procotoc version to CP_2025_03_26
…or async client resiliency tests
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.
It is a
InMemoryTrasportimplementation (inspired by one implemented in mcp-swift sdk)Motivation and Context
Make simpler test processing and also push developer to use MCP standard also for simple implementation
How Has This Been Tested?
Currently only by unit test
Breaking Changes
No breaking change
Types of changes
Checklist
Additional context