We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/norman-finance/norman-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies including Poppler for pdf2image
RUN apt-get update && apt-get install -y --no-install-recommends \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
# Install dependencies
RUN pip install --upgrade pip
# Copy project files
COPY . /app/
# Install the package and additional dependencies
RUN pip install -e . && \
pip install fastapi uvicorn pydantic pdf2image pillow requests
# Set environment variables
ENV PYTHONUNBUFFERED=1
# Expose server port
EXPOSE 3001
# Run the server with streamable-http transport (OAuth-enabled)
CMD ["python", "-m", "norman_mcp", "--transport", "streamable-http", "--environment", "production", "--host", "0.0.0.0", "--port", "3001"]