We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/i-dream-of-ai/quantconnect-mcp-jwt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# LedgAI Enhanced QuantConnect MCP Server with JWT Authentication
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install uv
RUN pip install uv
# Copy dependency files
COPY pyproject.toml .
# Generate lock file and install dependencies
RUN uv lock
RUN uv sync --frozen
# Copy source code
COPY src/ src/
# Set environment variables
ENV PYTHONPATH=/app/src
ENV MCP_TRANSPORT=stdio
ENV ENABLE_AUTH=true
# Create non-root user for security and setup cache directory
RUN useradd -r -s /bin/false mcpuser && \
mkdir -p /home/mcpuser/.cache && \
chown -R mcpuser:mcpuser /app /home/mcpuser
USER mcpuser
# Run the SSE MCP server with JWT auth
CMD ["uv", "run", "python", "src/mcp_sse_server.py"]