We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Havoc24k/aws-sa-tools-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pytest.ini•998 B
[tool:pytest]
# Pytest configuration for AWS MCP Server
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Async support
asyncio_mode = auto
# Coverage settings
addopts =
--verbose
--tb=short
--strict-markers
--disable-warnings
--cov=aws_mcp_server
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-report=xml:coverage.xml
--cov-fail-under=80
# Test markers
markers =
unit: Unit tests for individual components
integration: Integration tests with mocked AWS services
mcp: MCP protocol tests using FastMCP Client
e2e: End-to-end tests that start the actual MCP server process
slow: Tests that take longer to run
aws: Tests that interact with AWS services (mocked)
requires_aws_credentials: Tests that need real AWS credentials (skipped by default)
# Filter warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::ResourceWarning