We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SepineTam/stata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•907 B
ARG CAPTURE_VERSION=19_5
ARG BASIS=mp
ARG TAG=2026-01-14
FROM dataeditors/stata${CAPTURE_VERSION}-${BASIS}:$TAG
# Re-declare ARG after FROM to preserve value for ENV
ARG BASIS=mp
LABEL author="sepinetam"
LABEL description="Stata-MCP Official Docker image for running Stata-MCP in a sandboxed environment"
LABEL url="https://www.statamcp.com"
LABEL license="AGPL-3.0"
# Set user to avoid permission issues
USER root
# Stata CLI, can be overridden at runtime with -e STATA_CLI=stata-se
ENV STATA_CLI=/usr/local/stata/stata-${BASIS}
# Install uv
RUN apt-get update && apt-get install -y curl && \
curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin:${PATH}"
# Install Stata-MCP to system
COPY . /app
WORKDIR /app
RUN uv sync
# Set working directory and environment
WORKDIR /workspace
ENV STATA_MCP__CWD=/workspace
ENTRYPOINT ["/app/.venv/bin/stata-mcp"]
CMD ["-t", "stdio"]