We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SatoshiInoue/aem-assets-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•598 B
# Use Python 3.12 slim image
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy shared modules
COPY shared/ /app/shared/
# Copy MCP server code
COPY mcp-server/requirements.txt /app/
COPY mcp-server/app/ /app/app/
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Allow statements and log messages to immediately appear in the logs
ENV PYTHONUNBUFFERED=1
# Expose port
EXPOSE 8080
# Run the MCP server directly with Python (FastMCP has built-in server)
# This follows the official Cloud Run MCP server pattern
CMD ["python", "-m", "app.main"]