Skip to main content
Glama

Amazon Security Lake MCP Server

by kebabmane
Dockerfile1.03 kB
FROM python:3.11-slim # Set environment variables ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ PIP_NO_CACHE_DIR=1 \ PIP_DISABLE_PIP_VERSION_CHECK=1 # Create non-root user RUN groupadd -r aslmcp && useradd -r -g aslmcp aslmcp # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ curl \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY pyproject.toml ./ # Install Python dependencies RUN pip install -e . # Copy application code COPY src/ ./src/ COPY README.md LICENSE ./ # Create directories for logs and cache RUN mkdir -p /app/logs /app/cache && \ chown -R aslmcp:aslmcp /app # Switch to non-root user USER aslmcp # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD python -c "import asl_mcp_server.server; print('OK')" || exit 1 # Expose port (if needed for HTTP interface) EXPOSE 8000 # Set default command CMD ["python", "-m", "asl_mcp_server.server"]

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/kebabmane/asl-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server