We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kwenhwang/hrfco-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import json
from datetime import datetime
def handler(event, context):
"""Health check endpoint"""
return {
'statusCode': 200,
'headers': {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*'
},
'body': json.dumps({
'status': 'healthy',
'timestamp': datetime.now().isoformat(),
'service': 'hrfco-mcp-netlify',
'version': '1.0.0'
})
}