We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brianirish/laravel-mcp-companion'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[pytest]
minversion = 6.0
asyncio_mode = auto
addopts =
-ra
--strict-markers
--strict-config
--cov=laravel_mcp_companion
--cov=docs_updater
--cov=shutdown_handler
--cov=toon_helpers
--cov=mcp_tools
--cov=learning_resources
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-report=xml:coverage.xml
--cov-fail-under=80
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
network: marks tests that require network access
external: marks tests that interact with external services
protocol: marks tests as MCP protocol compliance tests
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(name)s: %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S