Skip to main content
Glama
Dockerfile745 B
FROM python:3.11-slim LABEL maintainer="platform-team@example.com" LABEL description="MCP Server - AI-driven remediation testing orchestration" # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ curl \ && rm -rf /var/lib/apt/lists/* # Copy requirements and install Python dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Create log directory RUN mkdir -p /app/log # Expose gRPC port EXPOSE 50051 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD curl -f http://localhost:50051/health || exit 1 # Run server CMD ["python", "-m", "mcp_server.server"]

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/Purv123/Remidiation-MCP'

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