We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/northernvariables/FedMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.news-ingestion•998 B
# Dockerfile for News Ingestion Cloud Run job
# Fetches Canadian political news from RSS feeds and extracts entity mentions
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY packages/data-pipeline/requirements.txt /app/requirements.txt
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the data pipeline package
COPY packages/data-pipeline /app/packages/data-pipeline
# Copy the fedmcp package (contains clients and utilities)
COPY packages/fedmcp /app/packages/fedmcp
# Copy the entry point script
COPY scripts/run-news-ingestion.py /app/run-news-ingestion.py
# Make script executable
RUN chmod +x /app/run-news-ingestion.py
# Set PYTHONPATH to include both packages
ENV PYTHONPATH=/app/packages/data-pipeline:/app/packages/fedmcp/src:${PYTHONPATH}
# Run the ingestion script
CMD ["python", "/app/run-news-ingestion.py"]