We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/benro/personal-productivity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.11-slim
# Install system dependencies including Playwright requirements
RUN apt-get update && apt-get install -y \
wget \
gnupg \
ca-certificates \
fonts-liberation \
libasound2 \
libatk-bridge2.0-0 \
libatk1.0-0 \
libatspi2.0-0 \
libcups2 \
libdbus-1-3 \
libdrm2 \
libgbm1 \
libgtk-3-0 \
libnspr4 \
libnss3 \
libwayland-client0 \
libxcomposite1 \
libxdamage1 \
libxfixes3 \
libxkbcommon0 \
libxrandr2 \
xdg-utils \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Copy dependency file and source code
COPY pyproject.toml .
COPY src/ ./src/
# Install Python dependencies
RUN pip install --no-cache-dir -e .
# Install Playwright and browsers
RUN playwright install chromium
RUN playwright install-deps chromium
# Create data directory for SQLite and other storage
RUN mkdir -p /app/data
# Set environment variables
ENV PYTHONUNBUFFERED=1
ENV PYTHONPATH=/app
ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
# Run the MCP server
CMD ["python", "-m", "mcp_server.server"]