We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FelipeAdachi/mcp-food-data-central'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•703 B
FROM python:3.12-slim
ARG PORT=8050
WORKDIR /app
# Install system dependencies and uv
RUN apt-get update && \
apt-get install -y python3-venv --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
RUN pip install uv
# Create a virtual environment.
RUN python -m venv .venv
# Activate the virtual environment for subsequent RUN instructions
ENV PATH="/app/.venv/bin:$PATH"
# Copy only files required for package installation to leverage caching
COPY pyproject.toml uv.lock ./
# Install dependencies into the virtual environment
RUN pip install -e .
# Copy the rest of the application source code
COPY . .
EXPOSE ${PORT}
# Command to run the MCP server
CMD ["uv", "run", "src/main.py"]