Skip to main content
Glama

Image Description MCP Server

by 7etsuo
Dockerfile724 B
# Use Python slim image FROM python:3.11-slim # Set working directory WORKDIR /app # Set Python unbuffered mode ENV PYTHONUNBUFFERED=1 # Copy requirements first for better caching COPY requirements.txt . # Install system dependencies (tesseract for OCR) and Python deps RUN apt-get update && \ apt-get install -y --no-install-recommends tesseract-ocr libgl1 && \ rm -rf /var/lib/apt/lists/* && \ pip install --no-cache-dir -r requirements.txt # Copy the server code COPY image-description-mcp_server.py . # Create non-root user RUN useradd -m -u 1000 mcpuser && \ chown -R mcpuser:mcpuser /app # Switch to non-root user USER mcpuser # Run the server CMD ["python", "image-description-mcp_server.py"]

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/7etsuo/image-description-mcp_server'

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