Skip to content

Commit 7827cdc

Browse files
authored
refactor(server): Fi StdioServerTransportProvider initialization flow (#74)
Extract message processing initialization from StdioMcpSessionTransport constructor into a separate initProcessing() method. Signed-off-by: Christian Tzolov <[email protected]>
1 parent a94163b commit 7827cdc

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

mcp/src/main/java/io/modelcontextprotocol/server/transport/StdioServerTransportProvider.java

+9-5
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ public StdioServerTransportProvider(ObjectMapper objectMapper, InputStream input
9393
@Override
9494
public void setSessionFactory(McpServerSession.Factory sessionFactory) {
9595
// Create a single session for the stdio connection
96-
this.session = sessionFactory.create(new StdioMcpSessionTransport());
96+
var transport = new StdioMcpSessionTransport();
97+
this.session = sessionFactory.create(transport);
98+
transport.initProcessing();
9799
}
98100

99101
@Override
@@ -142,10 +144,6 @@ public StdioMcpSessionTransport() {
142144
"stdio-inbound");
143145
this.outboundScheduler = Schedulers.fromExecutorService(Executors.newSingleThreadExecutor(),
144146
"stdio-outbound");
145-
146-
handleIncomingMessages();
147-
startInboundProcessing();
148-
startOutboundProcessing();
149147
}
150148

151149
@Override
@@ -181,6 +179,12 @@ public void close() {
181179
logger.debug("Session transport closed");
182180
}
183181

182+
private void initProcessing() {
183+
handleIncomingMessages();
184+
startInboundProcessing();
185+
startOutboundProcessing();
186+
}
187+
184188
private void handleIncomingMessages() {
185189
this.inboundSink.asFlux().flatMap(message -> session.handle(message)).doOnTerminate(() -> {
186190
// The outbound processing will dispose its scheduler upon completion

0 commit comments

Comments
 (0)