We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gldc/mcp-postgres'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•319 B
import os
import sys
from pathlib import Path
# Ensure project root is on sys.path
ROOT = str(Path(__file__).resolve().parents[1])
if ROOT not in sys.path:
sys.path.insert(0, ROOT)
# Clear DSN so tests run without a database
os.environ.pop("DATABASE_URL", None)
os.environ.pop("POSTGRES_CONNECTION_STRING", None)