Skip to main content
Glama

MCP Redirect Server

by marcos2872
main.ts622 B
import { NestFactory } from '@nestjs/core'; import { NestExpressApplication } from '@nestjs/platform-express'; import { AppModule } from './app.module'; import { Logger } from '@nestjs/common'; import cookieParser from 'cookie-parser'; async function bootstrap() { const app = await NestFactory.create<NestExpressApplication>(AppModule); // Necessário para gerenciamento de sessão OAuth app.use(cookieParser()); app.enableCors({ origin: true, credentials: true, }); await app.listen(process.env.PORT ?? 3000); Logger.log(`Application is running on: ${await app.getUrl()}`); } void bootstrap();

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/marcos2872/mcp-redirect-server'

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