We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/floriangrousset/opnsense-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install uv
RUN pip install --no-cache-dir uv
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install dependencies
RUN uv pip install --system -r requirements.txt
# Copy application code
COPY opnsense-mcp-server.py .
# Expose port (for future HTTP transport support)
EXPOSE 8080
# Set the entrypoint
ENTRYPOINT ["python", "opnsense-mcp-server.py"]