We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/febriansyahnr/oncall-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
connection.py•297 B
from src.infrastructure.database.xb import xb_engine
from src.infrastructure.database.snap_core import snap_engine
def get_db_connection(alias: str = 'xb'):
"""Get connection for specific database."""
if alias == 'snap':
return snap_engine.connect()
return xb_engine.connect()