We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/michaelkrasa/alpha-ess-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•253 B
# Use Python 3.12 as base image
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Install uv
RUN pip install uv
# Copy project files
COPY . .
# Install dependencies using uv
RUN uv sync
# Run the application
CMD ["uv", "run", "main.py"]