Skip to main content
Glama
Dockerfile678 B
# Multi-stage build for Withings MCP Server FROM python:3.11-slim AS builder # Set working directory WORKDIR /app # Copy dependency files COPY pyproject.toml ./ # Install dependencies RUN pip install --no-cache-dir -e . # Final stage FROM python:3.11-slim # Set working directory WORKDIR /app # Copy installed packages from builder COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages COPY --from=builder /usr/local/bin /usr/local/bin # Copy application code COPY src/ ./src/ # Set environment variables ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 # Run the MCP server CMD ["python", "-m", "withings_mcp_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/schimmmi/withings-mcp-server'

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