Skip to main content
Glama

Illumio MCP Server

by alexgoller
# Build stage FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS builder WORKDIR /app # Copy the entire project for building COPY . . # Install dependencies and create venv RUN uv venv /app/venv && \ . /app/venv/bin/activate && \ uv pip install -e . # Final stage FROM python:3.12-slim-bookworm WORKDIR /app # Copy only the necessary files from builder COPY --from=builder /app/venv /app/venv COPY --from=builder /app/src /app/src # Set environment variables ENV PATH="/app/venv/bin:$PATH" ENV PYTHONPATH=/app # Create log directory with proper permissions RUN mkdir -p /var/log/illumio-mcp && \ useradd -m -u 1000 illumio && \ chown -R illumio:illumio /app && \ chown -R illumio:illumio /var/log/illumio-mcp USER illumio # Command to run the application ENTRYPOINT ["illumio-mcp"]

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/alexgoller/illumio-mcp-server'

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