We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/remotebrowser/mcp-getgather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•329 B
"""GetGather package initialization."""
# Initialize logging as early as possible
try:
from getgather.config import settings
from getgather.logs import setup_logging
setup_logging(level=settings.LOG_LEVEL)
except Exception:
# If settings aren't available yet, setup_logging will be called from startup
pass