We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/possible055/relace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•647 B
def main() -> None:
"""Entry point for `relace-dashboard`.
The dashboard depends on optional UI packages (installed via `relace-mcp[tools]`).
Keep imports lazy so `relace-mcp` remains usable without those extras.
"""
try:
from .app import main as _main
except ModuleNotFoundError as exc:
missing = (exc.name or "").split(".", 1)[0]
if missing in {"textual", "rich"}:
raise SystemExit(
"relace-dashboard requires optional dependencies.\n"
"Install with: pip install relace-mcp[tools]"
) from exc
raise
_main()
__all__ = ["main"]