Skip to main content
Glama

Ultimate MCP Coding Platform

__init__.py636 B
"""Ultimate MCP backend package.""" from __future__ import annotations from importlib import import_module from typing import Any _SUBMODULE_ALIASES = { "enhanced_server": "mcp_server.enhanced_server", } __all__ = ["app", "settings"] def __getattr__(name: str) -> Any: if name in __all__: server = import_module("mcp_server.server") return getattr(server, name) if name in _SUBMODULE_ALIASES: return import_module(_SUBMODULE_ALIASES[name]) raise AttributeError(f"module 'mcp_server' has no attribute {name!r}") def __dir__() -> list[str]: return sorted(set(globals()) | set(__all__))

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Senpai-Sama7/Ultimate_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server