Skip to main content
Glama

π“‚€π“’π“‹Ήπ”Έβ„•π•Œπ”Ήπ•€π•Šπ“‹Ήπ“’π“‚€ - Intelligent Guidance for

by Hive-Academy
main.tsβ€’741 B
import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; import { GlobalFileLoggerService } from './utils/global-file-logger.service'; async function bootstrapProduction() { // Pass the logger to NestFactory.create to override ALL logging calls const app = await NestFactory.createApplicationContext(AppModule, { logger: false, }); return app.close(); } async function bootstrapDevelopment() { const app = await NestFactory.create(AppModule); const globalLogger = new GlobalFileLoggerService(); app.useLogger(globalLogger); await app.listen(process.env.PORT ?? 3000); } if (process.env.NODE_ENV === 'production') { void bootstrapProduction(); } else { void bootstrapDevelopment(); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hive-Academy/Anubis-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server