Facebook-Ads-MCP-Server

by gomarble-ai
Verified

Integrations

  • Provides an interface to Facebook Ads, enabling programmatic access to ad accounts, campaigns, ad sets, ads, and creatives. Offers tools for retrieving performance insights, change history, and managing Facebook Ads data.

Facebook Ads MCP Server

This project provides an MCP server acting as an interface to the Facebook Ads, enabling programmatic access to Facebook Ads data and management features.

Your browser does not support the video tag.

Easy One-Click Setup

For a simpler setup experience, we offer ready-to-use installers:

What It Does

  • Installs and configures the MCP server locally
  • Automatically handles environment setup
  • Prompts for Facebook token authentication during the process which is optional
  • If facebook access token is not provided then connect to GoMarble's server to create the token on your behalf

Important Disclaimer

This setup does not require you to manually obtain a Facebook Developer Access Token.

Instead, it connects securely to GoMarble's server to create the token on your behalf. GoMarble does not store your token — it is saved locally on your machine for use with the MCP server.


Setup

Prerequisites

  • Python 3.10+
  • Dependencies listed in requirements.txt
  1. (Optional but Recommended) Create and Activate a Virtual Environment:
    python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
    Using a virtual environment helps manage project dependencies cleanly[Source].
  2. Install Dependencies:
    pip install -r requirements.txt
  3. Obtain Facebook Access Token: Secure a Facebook User Access Token with the necessary permissions (e.g., ads_read). You can generate this through the Facebook Developer portal. Follow this link.

Usage with MCP Clients (e.g., Cursor, Claude Desktop)

To integrate this server with an MCP-compatible client, add a configuration(Claude) similar to the following. Replace YOUR_FACEBOOK_ACCESS_TOKEN with your actual token and adjust the path to server.py if necessary.

{ "mcpServers": { "fb-ads-mcp-server": { "command": "python", "args": [ "/path/to/your/fb-ads-mcp-server/server.py", "--fb-token", "YOUR_FACEBOOK_ACCESS_TOKEN" ] // If using a virtual environment, you might need to specify the python executable within the venv: // "command": "/path/to/your/fb-ads-mcp-server/venv/bin/python", // "args": [ // "/path/to/your/fb-ads-mcp-server/server.py", // "--fb-token", // "YOUR_FACEBOOK_ACCESS_TOKEN" // ] } } }

Restart the MCP Client app after making the update in the configuration.

(Note: On Windows, you might need to adjust the command structure or use cmd /k depending on your setup.)

Debugging the Server

Execute server.py, providing the access token via the --fb-token argument.

python server.py --fb-token YOUR_FACEBOOK_ACCESS_TOKEN

Available MCP Tools

This MCP server provides tools for interacting with Facebook Ads objects and data:

Tool NameDescription
Account & Object Read
list_ad_accountsLists ad accounts linked to the token.
get_details_of_ad_accountRetrieves details for a specific ad account.
get_campaign_by_idRetrieves details for a specific campaign.
get_adset_by_idRetrieves details for a specific ad set.
get_ad_by_idRetrieves details for a specific ad.
get_ad_creative_by_idRetrieves details for a specific ad creative.
get_adsets_by_idsRetrieves details for multiple ad sets by their IDs.
Fetching Collections
get_campaigns_by_adaccountRetrieves campaigns within an ad account.
get_adsets_by_adaccountRetrieves ad sets within an ad account.
get_ads_by_adaccountRetrieves ads within an ad account.
get_adsets_by_campaignRetrieves ad sets within a campaign.
get_ads_by_campaignRetrieves ads within a campaign.
get_ads_by_adsetRetrieves ads within an ad set.
get_ad_creatives_by_ad_idRetrieves creatives associated with an ad.
Insights & Performance Data
get_adaccount_insightsRetrieves performance insights for an ad account.
get_campaign_insightsRetrieves performance insights for a campaign.
get_adset_insightsRetrieves performance insights for an ad set.
get_ad_insightsRetrieves performance insights for an ad.
fetch_pagination_urlFetches data from a pagination URL (e.g., from insights).
Activity/Change History
get_activities_by_adaccountRetrieves change history for an ad account.
get_activities_by_adsetRetrieves change history for an ad set.

(Note: Most tools support additional parameters like fields, filtering, limit, pagination, date ranges, etc. Refer to the detailed docstrings within server.py for the full list and description of arguments for each tool.)

(Note: If your Facebook access token expires, you'll need to generate a new one and update the configuration file of the MCP Client with new token to continue using the tools.)

Dependencies

License

This project is licensed under the MIT License.


Installing via Smithery

To install Facebook Ads Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @gomarble-ai/facebook-ads-mcp-server --client claude
-
security - not tested
A
license - permissive license
-
quality - not tested

local-only server

The server can only run on the client's local machine because it depends on local resources.

MCP server acting as an interface to the Facebook Ads, enabling programmatic access to Facebook Ads data and management features.

  1. Easy One-Click Setup
    1. What It Does
    2. Important Disclaimer
  2. Setup
    1. Prerequisites
    2. Usage with MCP Clients (e.g., Cursor, Claude Desktop)
    3. Debugging the Server
    4. Available MCP Tools
    5. Dependencies
    6. License
  3. Installing via Smithery
    ID: cwdzzky07n