We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/phnx/context-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•491 B
FROM python:3.13-slim AS base
WORKDIR /app
# Copy requirements
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code & initial data
COPY src/ ./src/
COPY database/ ./database/
# Target 1: FastMCP Server
FROM base as mcp-server
EXPOSE 8000
CMD ["python", "src/context-updater/server.py"]
# Target 2: FastAPI Web Client
FROM base as web-client
EXPOSE 8001
CMD ["python", "src/context-updater/web-client/web_gateway.py"]