We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/northernvariables/FedMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
route.ts•414 B
/**
* Health check endpoint for Cloud Run health checks and monitoring
* Returns 200 OK if the application is running
*/
export async function GET() {
return new Response(
JSON.stringify({
status: 'ok',
timestamp: new Date().toISOString(),
service: 'canadagpt-frontend',
}),
{
status: 200,
headers: {
'Content-Type': 'application/json',
},
}
);
}