Skip to main content
Glama

MCP-WTIT

by yorifuji
index.tsโ€ข689 B
#!/usr/bin/env node import { Container } from './di/container.js'; // Handle graceful shutdown process.on('SIGINT', () => { console.error('\nShutting down MCP Time Server...'); process.exit(0); }); process.on('SIGTERM', () => { console.error('\nShutting down MCP Time Server...'); process.exit(0); }); async function main(): Promise<void> { try { const container = Container.getInstance(); const timeServer = container.timeServer; await timeServer.start(); } catch (error) { console.error('Failed to start MCP Time Server:', error); process.exit(1); } } main().catch((error) => { console.error('Unhandled error:', error); process.exit(1); });

Latest Blog Posts

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/yorifuji/mcp-wtit'

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