We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BERDataLakehouse/datalake-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Tests for the health routes module."""
from src.routes import health
def test_health_imports():
"""Test that health routes module can be imported."""
assert health is not None
def test_noop():
"""Simple placeholder test."""
assert 1 == 1