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 6813518 commit 65fad1dCopy full SHA for 65fad1d
src/server.ts
@@ -25,7 +25,11 @@ export class Server {
25
26
this.mcpServer.server.oninitialized = () => {
27
this.session.setAgentRunner(this.mcpServer.server.getClientVersion());
28
- logger.info(mongoLogId(1_000_004), "server", `Server started with transport ${transport.constructor.name}`);
+ logger.info(
29
+ mongoLogId(1_000_004),
30
+ "server",
31
+ `Server started with transport ${transport.constructor.name} and agent runner ${this.session.agentRunner?.name}`
32
+ );
33
};
34
}
35
0 commit comments