We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mjftw/mcp_neo4j_knowledge_graph'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•404 B
import pytest
def pytest_configure(config):
"""Configure pytest for our tests"""
# Register custom markers
config.addinivalue_line(
"markers",
"integration: mark test as an integration test"
)
@pytest.fixture(autouse=True)
def env_setup(monkeypatch):
"""Set up environment variables for testing"""
# You could add environment variables here if needed
pass