We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Blvckjs96/MemoVault'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•353 B
"""Pytest configuration and fixtures."""
import os
import pytest
@pytest.fixture(autouse=True)
def setup_test_env():
"""Set up test environment variables."""
# Use simple memory backend for tests by default
os.environ.setdefault("MEMOVAULT_MEMORY_BACKEND", "simple")
os.environ.setdefault("MEMOVAULT_LOG_LEVEL", "WARNING")
yield