We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mdlopresti/mealie-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Mealie MCP Server
# FastMCP-based Model Context Protocol server for Mealie integration
FROM python:3.12-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY src/ ./src/
# MCP servers communicate via stdin/stdout, no port needed
# Environment variables MEALIE_URL and MEALIE_API_TOKEN must be provided at runtime
ENTRYPOINT ["python", "-m", "src.server"]