Skip to main content
Glama
inventech-solution

Facebook/Meta Ads MCP Server

Dockerfile872 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Alpine's musl libc image causes pip to build certain dependencies from source, # which fails for packages like `orjson` (a transitive dependency of `mcp`) that # require Rust tooling. Using the glibc-based slim image provides prebuilt # wheels and allows `pip install -r requirements.txt` to succeed during the # Smithery build step. FROM python:3.11-slim WORKDIR /app # Install dependencies COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application code COPY . ./ # Expose the HTTP port used when running inside Smithery containers EXPOSE 8081 # Command to run the MCP server. The Smithery runtime injects configuration via # the MCP_CONFIG environment variable and sets the PORT for HTTP operation. CMD ["python", "server.py"]

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/inventech-solution/facebook-ads-mcp-server'

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