We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Polloinfilzato/dm20-protocol'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•293 B
"""
Pytest configuration and fixtures for dm20-protocol tests.
"""
import sys
from pathlib import Path
# Add src directory to Python path to allow importing dm20_protocol
src_path = Path(__file__).parent.parent / "src"
if str(src_path) not in sys.path:
sys.path.insert(0, str(src_path))