Skip to main content
Glama

Email Send/Receive MCP Server

by bedro96
Dockerfile618 B
FROM python:3.11-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ curl \ && rm -rf /var/lib/apt/lists/* # Install uv RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.cargo/bin:$PATH" # Copy project files COPY pyproject.toml ./ COPY main.py ./ COPY src/ ./src/ # Install dependencies using uv RUN uv pip install --system -e . # Expose port (if needed for future web interface) EXPOSE 8080 # Set environment variables ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 # Run the MCP server CMD ["python", "main.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/bedro96/email-send-mcp'

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