Fixes related to config loader

This commit is contained in:
2025-07-15 14:39:33 -05:00
parent 9b25a964f7
commit fef71122cf
4 changed files with 11 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
#!/usr/bin/env node
import { Logger } from './utils/logger.util.js';
import configLoader from './config/config-loader.js';
import { stdioTransport } from './server/stdio.js';
import { streamableHttpTransport } from './server/streamableHttp.js';
@@ -42,9 +41,6 @@ export async function startServer(): Promise<void> {
* Main entry point
*/
async function main() {
// Load configuration
configLoader.load();
// Server mode - determine transport and start server
await startServer();
}