Skip to main content
Glama

WYGIWYH Expense Tracking MCP Server

by ReNewator
Dockerfile917 B
# Production-ready Docker image for WYGIWYH MCP Server # Copyright (c) 2025 ReNewator.com FROM python:3.11-slim as base # Set environment variables ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ PIP_NO_CACHE_DIR=1 \ PIP_DISABLE_PIP_VERSION_CHECK=1 # Create app directory WORKDIR /app # Install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application files COPY server.py . COPY mcp_sse_server.py . COPY attached_assets/ ./attached_assets/ # Create non-root user for security RUN useradd -m -u 1000 appuser && \ chown -R appuser:appuser /app USER appuser # Expose port EXPOSE 5000 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:5000/health')" || exit 1 # Run the application CMD ["python", "mcp_sse_server.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/ReNewator/MCP-WYGIWYH'

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