Skip to main content
Glama
Dockerfile658 B
FROM python:3.11-slim LABEL maintainer="MCP Banking Server" LABEL description="Production-ready banking API with MCP integration" LABEL version="1.0.0" WORKDIR /app ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 ENV DISABLE_AUTH=false COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . RUN adduser --disabled-password --gecos '' appuser && \ chown -R appuser:appuser /app USER appuser EXPOSE 8000 HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')" || exit 1 CMD ["python", "server.py"]

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/sksingh2005/MCP'

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