We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/caron14/mcp-bigquery'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•267 B
"""Pytest setup for local imports."""
import sys
from pathlib import Path
def pytest_configure(config):
repo_root = Path(__file__).resolve().parents[1]
src_path = str(repo_root / "src")
if src_path not in sys.path:
sys.path.insert(0, src_path)