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.fedmcp-api•647 B
# Dockerfile for FedMCP HTTP API - Cloud Run Service
# This provides a REST API wrapper for the FedMCP MCP tools
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 the fedmcp package
COPY packages/fedmcp /app/packages/fedmcp
# Install the fedmcp package with API dependencies
RUN pip install --no-cache-dir -e /app/packages/fedmcp
# Set environment variables
ENV PYTHONPATH=/app/packages/fedmcp/src:${PYTHONPATH}
ENV PORT=8080
ENV HOST=0.0.0.0
# Expose the port
EXPOSE 8080
# Run the API server
CMD ["python", "-m", "fedmcp.api"]