We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brukhabtu/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•378 B
"""Shared test fixtures for integration tests."""
import pytest
@pytest.fixture(scope="session")
def integration_config():
"""Configuration for integration tests."""
# This would typically load test-specific configuration
# for integration tests that might need real services
return {
"test_timeout": 30,
"mock_external_services": True,
}