Skip to main content
Glama
Dockerfile505 B
FROM python:3.12-slim WORKDIR /app # Install dependencies COPY pyproject.toml . RUN pip install --no-cache-dir . # Copy source code COPY src/ src/ # Create non-root user RUN useradd -m -u 1000 mcp && chown -R mcp:mcp /app USER mcp # Expose the SSE port EXPOSE 8080 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD curl -f http://localhost:8080/health || exit 1 # Run with SSE transport by default ENTRYPOINT ["proxmox-mcp"] CMD ["--transport", "sse"]

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/teomarcdhio/proxmox-mcp'

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