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
# News Ingestion Cloud Run Job
# Fetches Canadian political news from RSS feeds, extracts entity mentions,
# and creates activity feed items for users tracking those entities.
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Install additional dependencies for news ingestion
RUN pip install --no-cache-dir \
supabase>=2.0.0 \
feedparser>=6.0.0
# Copy pipeline code
COPY fedmcp_pipeline ./fedmcp_pipeline
COPY run_news_ingestion.py .
COPY pyproject.toml .
# Install the package
RUN pip install -e .
# Set environment defaults
ENV PYTHONUNBUFFERED=1
ENV NEO4J_URI=bolt://10.128.0.3:7687
ENV NEO4J_USERNAME=neo4j
# Run the ingestion job
CMD ["python", "run_news_ingestion.py"]