Skip to main content
Glama

mcp-mistral-ocr

by everaldo
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Build stage FROM python:3.11-slim AS builder # Install UV RUN pip install uv # Set working directory WORKDIR /app # Copy project files COPY pyproject.toml . COPY src/ src/ # Create venv and install dependencies RUN uv venv RUN uv pip install --no-cache-dir . # Final stage FROM python:3.11-slim # Set working directory WORKDIR /app # Copy virtual environment and source files COPY --from=builder /app/.venv /app/.venv COPY --from=builder /app/src /app/src # Set environment variables ENV PATH="/app/.venv/bin:$PATH" ENV PYTHONPATH="/app/src" # Create directory for OCR files RUN mkdir -p /data/ocr # Set default OCR_DIR ENV OCR_DIR=/data/ocr # Run the MCP server CMD ["python", "-m", "mcp_mistral_ocr.main"]

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/everaldo/mcp-mistral-ocr'

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