We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elcachorrohumano/lastfm_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Use Python 3.13 slim image
FROM python:3.13-slim
# Set working directory
WORKDIR /app
# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
# Copy project files
COPY pyproject.toml uv.lock ./
COPY src/ ./src/
COPY mcp_server.py ./
# Install dependencies
RUN uv sync --frozen
# Set environment variables
ENV PYTHONPATH=/app
ENV PYTHONUNBUFFERED=1
# Expose the MCP server
ENTRYPOINT ["uv", "run", "python", "mcp_server.py"]