We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/maximdx/tesseract-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•604 B
# Use Python 3.11 slim as the base image
FROM python:3.11-slim
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
tesseract-ocr \
tesseract-ocr-eng \
tesseract-ocr-chi-sim \
poppler-utils \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /app
# Copy requirements.txt and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY server.py .
COPY ocr/ ./ocr/
# Command to run the server
CMD ["python", "server.py"]