We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/software-park/logseq-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
health.module.ts•373 B
import { Module } from '@nestjs/common';
import { HealthController } from './health.controller';
import { LogseqModule } from '../logseq/logseq.module';
/**
* Health Check 모듈
*
* HTTP 모드에서 서버 상태를 확인하기 위한 엔드포인트 제공
*/
@Module({
imports: [LogseqModule],
controllers: [HealthController],
})
export class HealthModule {}