Skip to main content
Glama

AI Customer Support Bot - MCP Server

Dockerfile673 B
FROM python:3.8-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ postgresql-client \ && rm -rf /var/lib/apt/lists/* # Copy requirements first to leverage Docker cache COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Environment variables ENV PYTHONUNBUFFERED=1 ENV PORT=8000 # Expose port EXPOSE ${PORT} # Health check HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \ CMD curl -f http://localhost:${PORT}/mcp/health || exit 1 # Run the application CMD ["python", "app.py"]

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/ChiragPatankar/AI-Customer-Support-Bot---MCP-Server'

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