We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexei-led/aws-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_aws_integration.py•536 B
"""Test to verify AWS integration setup."""
import pytest
@pytest.mark.integration
@pytest.mark.asyncio
async def test_aws_bucket(aws_s3_bucket):
"""Test that AWS bucket fixture works."""
# We need to manually extract the bucket name from the async generator
bucket_name = None
async for name in aws_s3_bucket:
bucket_name = name
break
print(f"AWS bucket fixture returned: {bucket_name}")
assert bucket_name is not None
assert isinstance(bucket_name, str)
assert len(bucket_name) > 0