Skip to main content
Glama

Cyber Sentinel MCP Server

by jx888-max
MIT License
2
Dockerfile967 B
FROM python:3.11-slim # Set environment variables ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 # Set work directory WORKDIR /app # Install system dependencies RUN apt-get update \ && apt-get install -y --no-install-recommends \ gcc \ libc6-dev \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY pyproject.toml ./ # Install Python dependencies RUN pip install --no-cache-dir --upgrade pip \ && pip install --no-cache-dir . # Copy application code COPY src/ ./src/ COPY README.md LICENSE ./ # Create non-root user RUN useradd --create-home --shell /bin/bash app \ && chown -R app:app /app USER app # Expose port (if needed for web interface) EXPOSE 8000 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD python -c "from cyber_sentinel.server import app; print('OK')" || exit 1 # Default command CMD ["python", "-m", "cyber_sentinel.server"]

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/jx888-max/cyber-sentinel-mcp'

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