diff --git a/src/mcp.ts b/src/mcp.ts index 24fb44f7..0ab916be 100644 --- a/src/mcp.ts +++ b/src/mcp.ts @@ -534,6 +534,8 @@ export async function startMcpServer(): Promise { const server = createMcpServer(store); const transport = new StdioServerTransport(); await server.connect(transport); + // Informational log to stderr (not stdout, which is used for MCP messages) + console.info("QMD MCP server ready on stdio (PID %d)", process.pid); } // =============================================================================