Skip to main content
Glama

Guardian News MCP Server

by SeoNaRu
Dockerfile732 B
# syntax=docker/dockerfile:1.6 FROM python:3.11-slim AS base ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ PIP_NO_CACHE_DIR=1 \ POETRY_VIRTUALENVS_CREATE=false WORKDIR /app # System deps RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ ca-certificates \ && rm -rf /var/lib/apt/lists/* # Install Python deps first (leverage layer cache) COPY requirements.txt ./ RUN pip install --upgrade pip && pip install -r requirements.txt # Copy source COPY src ./src COPY README.md pyproject.toml uv.lock ./ # Environment ENV PYTHONPATH=/app # Health check could be added later if exposing HTTP; MCP runs over stdio ENTRYPOINT ["python", "-m", "src.main"]

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/SeoNaRu/news_mcp'

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