We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/miyamamoto/jvlink-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•348 B
"""Live tests require keiba.db — skip in CI."""
import os, pytest
def pytest_collection_modifyitems(config, items):
db_path = os.environ.get("DB_PATH", "/tmp/keiba.db")
if not os.path.exists(db_path):
skip = pytest.mark.skip(reason=f"keiba.db not found at {db_path}")
for item in items:
item.add_marker(skip)