We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BurtTheCoder/mcp-mem.ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•293 B
"""Pytest configuration and shared fixtures."""
import pytest
@pytest.fixture(autouse=True)
def reset_env(monkeypatch):
"""Reset environment variables for each test."""
# This fixture runs automatically for all tests
# You can add common env var cleanup here if needed
pass