FROM python:3.11-slim
# Install system dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends gcc && \
rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Install uv
RUN pip install --upgrade pip && \
pip install uv
# Copy requirements file
COPY requirements.txt .
# Install dependencies using uv with --system flag
RUN uv pip install --system -r requirements.txt
# Copy the rest of the application
COPY . .
# Command to run the Meta Ads MCP server
CMD ["python", "-m", "meta_ads_mcp"]
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/pipeboard-co/meta-ads-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server