Skip to main content
Glama

Timezone MCP Server

by sam-artuso
app.controller.spec.tsβ€’756 B
import { describe, it, expect, beforeEach, vi } from 'vitest' import { AppController } from './app.controller' import { AppService } from './app.service' describe('AppController', () => { let controller: AppController let service: AppService beforeEach(() => { service = new AppService() controller = new AppController(service) }) describe('getHealth', () => { it('should return health status', () => { const result = controller.getHealth() expect(result).toHaveProperty('status') expect(result).toHaveProperty('timestamp') }) it('should call appService.getHealth', () => { const spy = vi.spyOn(service, 'getHealth') controller.getHealth() expect(spy).toHaveBeenCalled() }) }) })

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