UNPKG

mcp-think-tank

Version:

Structured thinking and knowledge management tool for Model Context Protocol

6 lines (5 loc) 212 B
// src/stderr-log.ts - Console redirection utility export function stderrLog() { // Redirect console.log to console.error before anything else uses it console.log = (...args) => console.error(...args); }