Skip to main content
Glama

STAC MCP Server

by BnJam
Containerfile887 B
# Minimal debian-based image to leverage manylinux wheels (avoids GDAL mismatch) FROM python:3.12-slim AS builder WORKDIR /app RUN apt-get update \ && apt-get install -y --no-install-recommends \ curl \ build-essential \ ca-certificates \ gdal-bin \ libgdal-dev \ libproj-dev \ && rm -rf /var/lib/apt/lists/* # Copy project files (include README and LICENSE for packaging metadata) COPY pyproject.toml ./ COPY README.md ./ COPY LICENSE ./ COPY stac_mcp ./stac_mcp # Install uv (Astral) for ASGI server RUN \ curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:${PATH}" # Install dependencies and build the package # RUN pip install . RUN uv sync RUN uv build RUN pip install dist/stac_mcp-*.whl # Set the entry point for the application ENTRYPOINT ["python", "-m", "stac_mcp.server"] CMD ["--help"]

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/BnJam/stac-mcp'

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