We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scoritz/superjolt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
update-check.hook.ts•470 B
import { Injectable, OnApplicationBootstrap } from '@nestjs/common';
import { UpdateService } from '../services/update.service';
@Injectable()
export class UpdateCheckHook implements OnApplicationBootstrap {
constructor(private readonly updateService: UpdateService) {}
async onApplicationBootstrap() {
// Check for updates after a small delay to not block the command
setTimeout(() => {
void this.updateService.checkForUpdates();
}, 100);
}
}