Skip to main content
Glama

Rootly MCP server

Official
# Use Python 3.12 slim image as base FROM python:3.12-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ gcc curl ca-certificates \ && rm -rf /var/lib/apt/lists/* # Install uv RUN pip install --no-cache-dir uv # Copy the entire project first for installation COPY . . # Install the package and its dependencies RUN uv pip install --system --no-cache-dir -e . # Expose the port the app runs on EXPOSE 8000 # Set environment variables ENV PYTHONUNBUFFERED=1 # Run the application CMD ["rootly-mcp-server", "--transport", "sse", "--log-level", "INFO", "--host", "0.0.0.0", "--port", "8000", "--hosted"]

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/Rootly-AI-Labs/Rootly-MCP-server'

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