We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jango-blockchained/advanced-homeassistant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
const check = async () => {
try {
const response = await fetch("http://localhost:3000/health");
if (!response.ok) {
console.error("Health check failed:", response.status);
process.exit(1);
}
console.log("Health check passed");
process.exit(0);
} catch (error) {
console.error("Health check failed:", error);
process.exit(1);
}
};
check();