We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bolinocroustibat/datagouv-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM astral/uv:python3.14-trixie-slim
# Install needed apt packages
RUN apt-get update -y && \
apt-get install -y --no-install-recommends git && \
rm -rf /var/lib/apt/lists/*
# Install dependencies
WORKDIR /app
ADD . /app/
RUN uv sync --frozen
# Expose port (default 8000, configurable via MCP_PORT env var)
EXPOSE 8000
# Run
ENTRYPOINT ["uv", "run"]
CMD ["python", "main.py"]