Skip to main content
Glama
Dockerfile.local859 B
FROM python:3.12-slim # System dependencies - install core packages, Python packages come from pip RUN apt-get update && \ apt-get install -y --no-install-recommends \ build-essential \ gcc \ g++ \ libgdal-dev \ libproj-dev \ libgeos-dev \ pkg-config \ curl \ && apt-get clean && \ rm -rf /var/lib/apt/lists/* || true WORKDIR /apps # Copy project files needed for installation COPY pyproject.toml README.md LICENSE ./ COPY src/ ./src/ # Prevent bytecode generation to avoid corruption issues ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 # Install package - Python 3.12 should be more stable RUN pip install --no-cache-dir .[all] && \ pip show gis-mcp || (echo "Installation failed" && exit 1) ENV GIS_MCP_TRANSPORT=http ENV GIS_MCP_HOST=0.0.0.0 ENV GIS_MCP_PORT=9010 EXPOSE 9010 CMD ["gis-mcp"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mahdin75/gis-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server