Skip to main content
Glama
Dockerfile676 B
FROM python:3.11-slim # Install SSH client and other utilities RUN apt-get update && \ apt-get install -y --no-install-recommends \ openssh-client \ && rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /app # Copy project files COPY pyproject.toml /app/ COPY src/ /app/src/ # Install Python dependencies RUN pip install --no-cache-dir -e . # Config file will be mounted as a volume # Set environment variables ENV PYTHONUNBUFFERED=1 # Expose HTTP API port EXPOSE 3000 # Run the HTTP wrapper (easier for OpenWebUI to connect) CMD ["python", "-m", "flask", "--app", "ssh_control_mcp.http_wrapper:app", "run", "--host", "0.0.0.0", "--port", "3000"]

Latest Blog Posts

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/Jutop/MCP_Linux_Administration_SSH-OpenWebUI_Tool'

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