We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ai-debugger/aidb'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•431 B
"""Fixtures for config module tests."""
from collections.abc import Generator
import pytest
from aidb_common.config.runtime import ConfigManager
@pytest.fixture(autouse=True)
def reset_config_manager() -> Generator[None, None, None]:
"""Reset ConfigManager singleton before each test.
This ensures test isolation by resetting the singleton state.
"""
ConfigManager.reset()
yield
ConfigManager.reset()