Skip to main content
Glama

Odoo MCP Unified Server

by golfamigo
Dockerfile•966 B
FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && \ apt-get install -y --no-install-recommends \ gcc \ procps \ curl \ git \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Upgrade pip RUN pip install --no-cache-dir --upgrade pip setuptools wheel # Copy requirements first for better caching COPY requirements.txt ./ # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy all project files COPY . . # Add src to PYTHONPATH instead of installing package # This is more reliable for Docker/Zeabur deployment ENV PYTHONPATH=/app/src:$PYTHONPATH # Create logs directory RUN mkdir -p /app/logs && chmod 777 /app/logs # Environment variables (can be overridden) ENV PYTHONUNBUFFERED=1 ENV MCP_TRANSPORT=sse ENV ODOO_TIMEOUT=60 ENV ODOO_VERIFY_SSL=false ENV PORT=8000 ENV HOST=0.0.0.0 # Expose port EXPOSE 8000 # Run the server CMD ["python", "run_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/golfamigo/odooMcp'

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