Skip to main content
Glama

Timezone MCP Server

by sam-artuso
app.controller.tsβ€’671 B
import { Controller, Get } from '@nestjs/common' import { ApiTags, ApiOperation, ApiResponse } from '@nestjs/swagger' import { AppService } from './app.service' import { HealthResponseDto } from './dto/health-response.dto' @ApiTags('health') @Controller() export class AppController { constructor(private readonly appService: AppService) {} @Get('health') @ApiOperation({ summary: 'Health check endpoint', description: 'Returns the health status of the service', }) @ApiResponse({ status: 200, description: 'Service is healthy', type: HealthResponseDto, }) getHealth(): HealthResponseDto { return this.appService.getHealth() } }

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/sam-artuso/demo-mcp'

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