* Log to stderr so diagnostic output never corrupts the MCP stdio channel. * When `server` runs without --mcp-only, both the HTTP server and MCP stdio * server share the same process. stdout is reserved for JSON-RPC messages, * so all logging must go to stderr.
(message: string)
| 34 | * so all logging must go to stderr. |
| 35 | */ |
| 36 | function log(message: string): void { |
| 37 | process.stderr.write(message + "\n"); |
| 38 | } |
| 39 | |
| 40 | // Cloud API configuration |
| 41 | let cloudApiKey: string | undefined; |
no outgoing calls
no test coverage detected