Skip to content

Commit 7779c5d

Browse files
committed
fix mcp stderr log
1 parent 6b8010f commit 7779c5d

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

src/services/mcp/McpHub.ts

+16-9
Original file line numberDiff line numberDiff line change
@@ -351,15 +351,22 @@ export class McpHub {
351351
const stderrStream = transport.stderr
352352
if (stderrStream) {
353353
stderrStream.on("data", async (data: Buffer) => {
354-
const errorOutput = data.toString()
355-
console.error(`Server "${name}" stderr:`, errorOutput)
356-
const connection = this.connections.find((conn) => conn.server.name === name)
357-
if (connection) {
358-
// NOTE: we do not set server status to "disconnected" because stderr logs do not necessarily mean the server crashed or disconnected, it could just be informational. In fact when the server first starts up, it immediately logs "<name> server running on stdio" to stderr.
359-
this.appendErrorMessage(connection, errorOutput)
360-
// Only need to update webview right away if it's already disconnected
361-
if (connection.server.status === "disconnected") {
362-
await this.notifyWebviewOfServerChanges()
354+
const output = data.toString()
355+
// Check if output contains INFO level log
356+
const isInfoLog = /INFO/i.test(output)
357+
358+
if (isInfoLog) {
359+
// Log normal informational messages
360+
console.log(`Server "${name}" info:`, output)
361+
} else {
362+
// Treat as error log
363+
console.error(`Server "${name}" stderr:`, output)
364+
const connection = this.connections.find((conn) => conn.server.name === name)
365+
if (connection) {
366+
this.appendErrorMessage(connection, output)
367+
if (connection.server.status === "disconnected") {
368+
await this.notifyWebviewOfServerChanges()
369+
}
363370
}
364371
}
365372
})

0 commit comments

Comments
 (0)