We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0953448 commit 16d8306Copy full SHA for 16d8306
src/mcp-bundle/src/Command/McpCommand.php
@@ -31,7 +31,10 @@ public function __construct(
31
32
protected function execute(InputInterface $input, OutputInterface $output): int
33
{
34
- $this->server->connect(new StdioTransport(logger: $this->logger));
+ $transport = new StdioTransport(logger: $this->logger);
35
+ $this->server->connect($transport);
36
+
37
+ $transport->listen();
38
39
return Command::SUCCESS;
40
}
0 commit comments