We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cheesejaguar/aerospace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_app_entry.py•263 B
"""Lightweight tests for the app package entrypoint.
Ensures the app.main module imports cleanly so coverage includes it.
"""
import importlib
def test_app_module_imports() -> None:
mod = importlib.import_module("app.main")
assert hasattr(mod, "app")