Skip to main content
Glama

AWS Model Context Protocol Server

by alexei-led
test_aws_integration.py733 B
"""Simple test to verify AWS integration setup.""" import pytest @pytest.mark.integration def test_aws_credentials(ensure_aws_credentials): """Test that AWS credentials fixture works.""" print("AWS credentials test is running!") assert True @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

MCP directory API

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