Skip to main content
Glama

Cursor Proxmox MCP

by agentify-sh
Dockerfile776 B
# Use Python 3.11 slim image as base FROM python:3.11-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ git \ curl \ && rm -rf /var/lib/apt/lists/* # Install Python dependencies RUN pip install mcpo uv # Copy project files COPY . . # Create virtual environment and install dependencies RUN uv venv && \ . .venv/bin/activate && \ uv pip install -e ".[dev]" # Expose port EXPOSE 8811 # Set environment variables ENV PROXMOX_MCP_CONFIG="/app/proxmox-config/config.json" ENV API_HOST="0.0.0.0" ENV API_PORT="8811" # Startup command CMD ["mcpo", "--host", "0.0.0.0", "--port", "8811", "--", \ "/bin/bash", "-c", "cd /app && source .venv/bin/activate && python -m proxmox_mcp.server"]

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/agentify-sh/cursor-proxmox-mcp'

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