Skip to main content
Glama

MCP Developer Server

by RA86-dev
Dockerfile1.6 kB
# syntax=docker/dockerfile:1 # Multi-architecture support - optimized for ARM64/Apple Silicon FROM python:3.11.13-bookworm LABEL description="A large developer focused MCP server for running with AI more easily." LABEL author='RA86-dev' # Prevents Python from writing pyc files and keeps Python from buffering stdout/stderr ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 # Install system dependencies with retry logic for hash sum mismatch issues RUN apt-get clean && \ rm -rf /var/lib/apt/lists/* && \ apt-get update --fix-missing || apt-get update && \ apt-get install -y --no-install-recommends \ python3 \ python3-pip \ python3-venv \ curl \ wget \ gnupg \ ca-certificates \ && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* WORKDIR /app # Copy requirements first for better caching COPY requirements.txt . # Install Python dependencies RUN --mount=type=cache,target=/root/.cache/pip \ python3 -m pip install --upgrade pip && \ python3 -m pip install -r requirements.txt RUN apt-get clean && rm -rf /var/lib/apt/lists/* && \ apt-get update --fix-missing # Install Playwright and dependencies RUN playwright install-deps RUN playwright install chromium firefox webkit # Copy the source code into the container COPY . . # Create non-root user for security RUN groupadd -r appuser && useradd -r -g appuser appuser && \ chown -R appuser:appuser /app USER appuser # Expose the port that the application listens on EXPOSE 8000 # Run the application CMD ["python3", "main.py", "--transport", "http", "--verbose"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/RA86-dev/mcpdev-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server