Skip to main content
Glama

MCP Content Analyzer

by DuncanDam
health.ts784 B
import { Hono } from 'hono'; import { config } from '../utils/config.js'; const health: Hono = new Hono(); health.get('/', (c) => { return c.json({ status: 'healthy', timestamp: new Date().toISOString(), uptime: process.uptime(), version: '1.0.0', phase: 'Phase 5 - Complete Workflow & Hono Integration', nodeVersion: process.version, environment: { logLevel: config.server.logLevel, teamName: config.team.name, serverName: config.team.serverName } }); }); health.get('/ready', (c) => { return c.json({ ready: true, services: { excel: 'operational', webScraper: 'operational', documentReader: 'operational' }, timestamp: new Date().toISOString() }); }); export { health as healthRoutes };

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/DuncanDam/my-mcp'

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