meta-ads-mcp 0.2.6__py3-none-any.whl → 0.2.9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meta-ads-mcp
3
- Version: 0.2.6
3
+ Version: 0.2.9
4
4
  Summary: Model Calling Protocol (MCP) plugin for interacting with Meta Ads API
5
5
  Project-URL: Homepage, https://github.com/nictuku/meta-ads-mcp
6
6
  Project-URL: Bug Tracker, https://github.com/nictuku/meta-ads-mcp/issues
7
7
  Author-email: Your Name <your.email@example.com>
8
8
  License: MIT
9
+ License-File: LICENSE
9
10
  Keywords: ads,api,claude,facebook,mcp,meta
10
11
  Classifier: License :: OSI Approved :: MIT License
11
12
  Classifier: Operating System :: OS Independent
@@ -15,6 +16,7 @@ Requires-Dist: httpx>=0.26.0
15
16
  Requires-Dist: mcp[cli]>=1.6.0
16
17
  Requires-Dist: pathlib>=1.0.1
17
18
  Requires-Dist: pillow>=10.0.0
19
+ Requires-Dist: python-dateutil>=2.8.2
18
20
  Requires-Dist: python-dotenv>=1.1.0
19
21
  Requires-Dist: requests>=2.32.3
20
22
  Description-Content-Type: text/markdown
@@ -25,6 +27,10 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server for in
25
27
 
26
28
  > **DISCLAIMER:** This is an unofficial third-party tool and is not associated with, endorsed by, or affiliated with Meta in any way. This project is maintained independently and uses Meta's public APIs according to their terms of service. Meta, Facebook, Instagram, and other Meta brand names are trademarks of their respective owners.
27
29
 
30
+ <a href="https://glama.ai/mcp/servers/@pipeboard-co/meta-ads-mcp">
31
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/@pipeboard-co/meta-ads-mcp/badge" alt="Meta Ads MCP server" />
32
+ </a>
33
+
28
34
  Screenhot: using an LLM to understand your ad performance.
29
35
 
30
36
  ![Meta Ads MCP in action: Visualize ad performance metrics and creative details directly in Claude or your favorite MCP client, with rich insights about campaign reach, engagement, and costs](./images/meta-ads-example.png)
@@ -49,6 +55,11 @@ Screenhot: using an LLM to understand your ad performance.
49
55
  When using uv no specific installation is needed. We can use uvx to directly run meta-ads-mcp:
50
56
 
51
57
  ```bash
58
+ # RECOMMENDED: Use with Pipeboard authentication
59
+ export PIPEBOARD_API_TOKEN=your_pipeboard_token # Get your token at https://pipeboard.co
60
+ uvx meta-ads-mcp
61
+
62
+ # Alternative: Use with direct Meta authentication
52
63
  uvx meta-ads-mcp --app-id YOUR_META_ADS_APP_ID
53
64
  ```
54
65
 
@@ -76,14 +87,49 @@ pip install meta-ads-mcp
76
87
  After installation, you can run it as:
77
88
 
78
89
  ```bash
90
+ # RECOMMENDED: Use with Pipeboard authentication
91
+ export PIPEBOARD_API_TOKEN=your_pipeboard_token # Get your token at https://pipeboard.co
79
92
  python -m meta_ads_mcp
93
+
94
+ # Alternative: Use with direct Meta authentication
95
+ python -m meta_ads_mcp --app-id YOUR_META_ADS_APP_ID
80
96
  ```
81
97
 
82
98
  ## Configuration
83
99
 
84
- ### Usage with Claude in Cursor
100
+ ### Quick Start with Pipeboard Authentication (Recommended)
101
+
102
+ The easiest way to configure Meta Ads MCP is using Pipeboard authentication:
103
+
104
+ 1. Sign up at [Pipeboard.co](https://pipeboard.co) and generate an API token - **Get your free token at [https://pipeboard.co](https://pipeboard.co)**
105
+ 2. Set the environment variable:
106
+ ```bash
107
+ export PIPEBOARD_API_TOKEN=your_pipeboard_token # Token obtainable via https://pipeboard.co
108
+ ```
109
+ 3. Run meta-ads-mcp without needing to set up a Meta Developer App:
110
+ ```bash
111
+ uvx meta-ads-mcp
112
+ ```
113
+
114
+ This method provides longer-lived tokens (60 days), simplified setup, and automatic token renewal.
115
+
116
+ ### Usage with Cursor or Claude Desktop
117
+
118
+ Add this to your `claude_desktop_config.json` to integrate with Claude or `~/.cursor/mcp.json` to integrate with Cursor:
85
119
 
86
- Add this to your `claude_desktop_config.json` to integrate with Claude in Cursor:
120
+ ```json
121
+ "mcpServers": {
122
+ "meta-ads": {
123
+ "command": "uvx",
124
+ "args": ["meta-ads-mcp"],
125
+ "env": {
126
+ "PIPEBOARD_API_TOKEN": "your_pipeboard_token" // Token obtainable via https://pipeboard.co
127
+ }
128
+ }
129
+ }
130
+ ```
131
+
132
+ Or if you prefer direct Meta authentication (using your own Facebook app):
87
133
 
88
134
  ```json
89
135
  "mcpServers": {
@@ -228,6 +274,7 @@ Add this to your `claude_desktop_config.json` to integrate with Claude in Cursor
228
274
 
229
275
  16. `mcp_meta_ads_get_login_link`
230
276
  - Get a clickable login link for Meta Ads authentication
277
+ - NOTE: This method should only be used if you're using your own Facebook app. If using Pipeboard authentication (recommended), set the PIPEBOARD_API_TOKEN environment variable instead (token obtainable via https://pipeboard.co).
231
278
  - Inputs:
232
279
  - `access_token` (optional): Meta API access token (will use cached token if not provided)
233
280
  - Returns: A clickable resource link for Meta authentication
@@ -244,13 +291,47 @@ Before using the MCP server, you'll need to set up a Meta Developer App:
244
291
 
245
292
  ## Authentication
246
293
 
247
- The Meta Ads MCP uses the OAuth 2.0 flow designed for desktop apps. When authenticating, it will:
294
+ The Meta Ads MCP supports two authentication methods:
295
+
296
+ ### 1. Pipeboard Authentication (Recommended ⭐)
297
+
298
+ This method uses [Pipeboard.co](https://pipeboard.co) to manage Meta API authentication, providing longer-lived tokens and a simplified flow:
299
+
300
+ 1. **Get your Pipeboard token**: Sign up at [https://pipeboard.co](https://pipeboard.co) to generate your free API token
301
+ 2. Set the `PIPEBOARD_API_TOKEN` environment variable with your token:
302
+ ```bash
303
+ export PIPEBOARD_API_TOKEN=your_pipeboard_token
304
+ ```
305
+ 3. Run the Meta Ads MCP normally - it will automatically detect and use Pipeboard authentication:
306
+ ```bash
307
+ uvx meta-ads-mcp
308
+ ```
309
+ 4. The first time you run a command, you'll be provided with a login URL to authorize with Meta
310
+
311
+ **Benefits of Pipeboard authentication:**
312
+ - ✅ Longer-lived tokens (60 days)
313
+ - ✅ No need to configure a Meta Developer App
314
+ - ✅ Simpler setup with just an API token
315
+ - ✅ Automatic token renewal
316
+
317
+ To test the Pipeboard authentication flow:
318
+ ```bash
319
+ python test_pipeboard_auth.py --api-token YOUR_PIPEBOARD_TOKEN
320
+ ```
321
+
322
+ ### 2. Direct Meta OAuth (Legacy)
323
+
324
+ The traditional OAuth 2.0 flow designed for desktop apps. This method should only be used if you are using your own Facebook app instead of Pipeboard.
325
+
326
+ When authenticating, it will:
248
327
 
249
328
  1. Start a local callback server on your machine
250
329
  2. Open a browser window to authenticate with Meta
251
330
  3. Ask you to authorize the app
252
331
  4. Redirect back to the local server to extract and store the token securely
253
332
 
333
+ This method requires you to [create a Meta Developer App](#create-a-meta-developer-app) first.
334
+
254
335
  ## Troubleshooting and Logging
255
336
 
256
337
  The Meta Ads MCP includes a comprehensive logging system to help troubleshoot issues:
@@ -265,21 +346,29 @@ Log files are stored in a platform-specific location:
265
346
 
266
347
  ### Common Issues
267
348
 
268
- #### App ID Issues
349
+ #### Authentication Issues
350
+
351
+ If you're having authentication problems:
269
352
 
270
- If you encounter errors like `(#200) Provide valid app ID`, check the following:
353
+ 1. **Recommended: Use Pipeboard Authentication**
354
+ - Set `export PIPEBOARD_API_TOKEN=your_token` and retry
355
+ - This provides longer-lived tokens and better reliability
356
+ - Verify your token in the Pipeboard dashboard
271
357
 
272
- 1. Ensure you've set up a Meta Developer App correctly
273
- 2. Verify that you're passing the correct App ID using one of these methods:
274
- - Set the `META_APP_ID` environment variable: `export META_APP_ID=your_app_id`
275
- - Pass it as a command-line argument: `meta-ads-mcp --app-id your_app_id`
358
+ 2. For App ID issues (when using direct authentication):
359
+ If you encounter errors like `(#200) Provide valid app ID`, check the following:
360
+ - Ensure you've set up a Meta Developer App correctly
361
+ - Verify that you're passing the correct App ID using one of these methods:
362
+ - Set the `META_APP_ID` environment variable: `export META_APP_ID=your_app_id`
363
+ - Pass it as a command-line argument: `meta-ads-mcp --app-id your_app_id`
276
364
 
277
- #### Authentication Errors
365
+ #### API Errors
278
366
 
279
- Authentication errors can be tracked in the log file. Check for:
280
- - Token expiration issues
281
- - App permission problems
282
- - Connection errors
367
+ If you receive errors from the Meta API:
368
+
369
+ 1. Verify your app has the Marketing API product added
370
+ 2. Ensure the user has appropriate permissions on the ad accounts
371
+ 3. Check if there are rate limits or other restrictions on your app
283
372
 
284
373
  ### Debugging Command
285
374
 
@@ -310,14 +399,15 @@ uvx meta-ads-mcp --app-id=your_app_id
310
399
  The Meta Ads MCP follows security best practices:
311
400
 
312
401
  1. Tokens are cached in a platform-specific secure location:
313
- - Windows: `%APPDATA%\meta-ads-mcp\token_cache.json`
314
- - macOS: `~/Library/Application Support/meta-ads-mcp/token_cache.json`
315
- - Linux: `~/.config/meta-ads-mcp/token_cache.json`
402
+ - Windows: `%APPDATA%\meta-ads-mcp\token_cache.json` or `%APPDATA%\meta-ads-mcp\pipeboard_token_cache.json`
403
+ - macOS: `~/Library/Application Support/meta-ads-mcp/token_cache.json` or `~/Library/Application Support/meta-ads-mcp/pipeboard_token_cache.json`
404
+ - Linux: `~/.config/meta-ads-mcp/token_cache.json` or `~/.config/meta-ads-mcp/pipeboard_token_cache.json`
316
405
 
317
406
  2. You do not need to provide your access token for each command; it will be automatically retrieved from the cache.
318
407
 
319
408
  3. You can set the following environment variables instead of passing them as arguments:
320
- - `META_APP_ID`: Your Meta App ID (Client ID)
409
+ - `META_APP_ID`: Your Meta App ID (Client ID) - for direct OAuth method
410
+ - `PIPEBOARD_API_TOKEN`: Your Pipeboard API token - for Pipeboard authentication method
321
411
 
322
412
  ## Testing
323
413
 
@@ -339,11 +429,12 @@ python test_meta_ads_auth.py --app-id YOUR_APP_ID --force-login
339
429
 
340
430
  When using the Meta Ads MCP with an LLM interface (like Claude):
341
431
 
342
- 1. Test authentication by calling the `mcp_meta_ads_get_login_link` tool
343
- 2. Verify account access by calling `mcp_meta_ads_get_ad_accounts`
344
- 3. Check specific account details with `mcp_meta_ads_get_account_info`
432
+ 1. If using direct Meta authentication (your own Facebook app), test authentication by calling the `mcp_meta_ads_get_login_link` tool
433
+ 2. If using Pipeboard authentication (recommended), ensure the PIPEBOARD_API_TOKEN environment variable is set (token obtainable via https://pipeboard.co)
434
+ 3. Verify account access by calling `mcp_meta_ads_get_ad_accounts`
435
+ 4. Check specific account details with `mcp_meta_ads_get_account_info`
345
436
 
346
- These functions will automatically handle authentication if needed and provide a clickable login link.
437
+ These functions will automatically handle authentication if needed and provide a clickable login link if required.
347
438
 
348
439
  ## Troubleshooting
349
440
 
@@ -352,20 +443,20 @@ These functions will automatically handle authentication if needed and provide a
352
443
  If you encounter authentication issues:
353
444
 
354
445
  1. When using the LLM interface:
355
- - Use the `mcp_meta_ads_get_login_link` tool to generate a fresh authentication link
446
+ - If using direct Meta authentication (your own Facebook app), use the `mcp_meta_ads_get_login_link` tool to generate a fresh authentication link
447
+ - If using Pipeboard authentication (recommended), ensure the PIPEBOARD_API_TOKEN environment variable is set (token obtainable via https://pipeboard.co)
356
448
  - Ensure you click the link and complete the authorization flow in your browser
357
449
  - Check that the callback server is running properly (the tool will report this)
358
450
 
359
- 2. When using the command line:
451
+ 2. When using Pipeboard authentication:
452
+ - Verify your `PIPEBOARD_API_TOKEN` is set correctly (token obtainable via https://pipeboard.co)
453
+ - Check if you need to complete the authorization process by visiting the provided login URL
454
+ - Try forcing a new login: `python test_pipeboard_auth.py --force-login`
455
+
456
+ 3. When using direct Meta OAuth:
360
457
  - Run with `--force-login` to get a fresh token: `uvx meta-ads-mcp --login --app-id YOUR_APP_ID --force-login`
361
458
  - Make sure the terminal has permissions to open a browser window
362
459
 
363
- 3. General authentication troubleshooting:
364
- - Check that your app is properly configured in the Meta Developers portal
365
- - Ensure your app has the necessary permissions (ads_management, ads_read, business_management)
366
- - Verify the app's redirect URI includes `http://localhost:8888/callback`
367
- - Try clearing the token cache (located in platform-specific directories listed in the Token Caching section)
368
-
369
460
  ### API Errors
370
461
 
371
462
  If you receive errors from the Meta API:
@@ -0,0 +1,22 @@
1
+ meta_ads_mcp/__init__.py,sha256=AuAxuPA8inR_eb6d8SiwAh52vOUiDbGysvovx9frbRE,1236
2
+ meta_ads_mcp/__main__.py,sha256=XaQt3iXftG_7f0Zu7Wop9SeFgrD2WBn0EQOaPMc27d8,207
3
+ meta_ads_mcp/api.py,sha256=lSyyvvcqZ8sGcd0R9Vk2b_4zDANTiU_z6AojfL7v41s,81984
4
+ meta_ads_mcp/core/__init__.py,sha256=6T8iqrQrw9VHhKtncLqYWyDk8jeSBPs79hs1CSu-fLU,952
5
+ meta_ads_mcp/core/accounts.py,sha256=Nmp7lPxO9wmq25jWV7_H0LIqnEbBhpCVBlLGW2HUaq0,2277
6
+ meta_ads_mcp/core/ads.py,sha256=LMZOo6agi6tQl4JJPmrDUn-91n7DzfxG2TChmwcrWOY,12544
7
+ meta_ads_mcp/core/adsets.py,sha256=os8MdPdHO6mGIRQdTlx7PxvcLRq8B9BhybQIHLD37Qg,12382
8
+ meta_ads_mcp/core/api.py,sha256=ZflFD9WWScuSqi9c9m8b_Ck8S1FSTGENd3sh9rL5HfY,14182
9
+ meta_ads_mcp/core/auth.py,sha256=RPfwJxrER9ZdQG0KCKeyhfjOf_pMr5h1Z2b5dEIHKFI,20667
10
+ meta_ads_mcp/core/authentication.py,sha256=3AHSXslZdxyg0_s2253aQhpOeguMSu2cSYq4H_auywY,6485
11
+ meta_ads_mcp/core/callback_server.py,sha256=b5TzUz9nEk0i5MWujlls5gAsHru__UjTPJQan1xQ_10,40947
12
+ meta_ads_mcp/core/campaigns.py,sha256=20DHMwHppZuoZBg0owkf1BfmPBhWzkQcFgh5rQa-pAU,10480
13
+ meta_ads_mcp/core/insights.py,sha256=XAm4uu83gWp84PEGqAJ3GFIqlvg7prh6MdD71JfvBCo,18072
14
+ meta_ads_mcp/core/pipeboard_auth.py,sha256=hmd9f54fFWwQgf3QIlFhyTKBnK4RetVealh_LwhmFvE,22798
15
+ meta_ads_mcp/core/resources.py,sha256=-zIIfZulpo76vcKv6jhAlQq91cR2SZ3cjYZt3ek3x0w,1236
16
+ meta_ads_mcp/core/server.py,sha256=5WofyJZGzeDhbGzLXPhQjT0XnZwo0syeK8TM_XnJo4Q,5507
17
+ meta_ads_mcp/core/utils.py,sha256=EPmpBX3OZaTWRS_YuEk_PLLyLXj7DeR6Ks8WoaZ5JGQ,6366
18
+ meta_ads_mcp-0.2.9.dist-info/METADATA,sha256=nUCswfzP08-tyyfkmvfsXOn8lxAol-bBZkoL57g1qn8,19587
19
+ meta_ads_mcp-0.2.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
+ meta_ads_mcp-0.2.9.dist-info/entry_points.txt,sha256=Dv2RkoBjRJBqj6CyhwqGIiwPCD-SCL1-7B9-zmVRuv0,57
21
+ meta_ads_mcp-0.2.9.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
22
+ meta_ads_mcp-0.2.9.dist-info/RECORD,,
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,20 +0,0 @@
1
- meta_ads_mcp/__init__.py,sha256=r_A2NaKWasOAmt5IT2zhGrE2FRjVIMYiQKXZ9LMxTI0,1236
2
- meta_ads_mcp/__main__.py,sha256=XaQt3iXftG_7f0Zu7Wop9SeFgrD2WBn0EQOaPMc27d8,207
3
- meta_ads_mcp/api.py,sha256=9mmoJIdkC3PexZn3hw8XiKznecsbOSnhHtdEsJiPIyw,77475
4
- meta_ads_mcp/core/__init__.py,sha256=BA93zC6D8CzKbLo4JqqNqahq2LVgWBsoIXmJCK4AdIc,924
5
- meta_ads_mcp/core/accounts.py,sha256=Nmp7lPxO9wmq25jWV7_H0LIqnEbBhpCVBlLGW2HUaq0,2277
6
- meta_ads_mcp/core/ads.py,sha256=jAwa1gD3HpXFhDW53cUMYwnt52jmBjTHTwb9HUk0EaA,16975
7
- meta_ads_mcp/core/adsets.py,sha256=zSC67UhrhiinLY_SYSMNjRlmSZxCvyBYXIXroPBaVNc,7359
8
- meta_ads_mcp/core/api.py,sha256=AurfnoUZoIq9WS4cnsmVqpxc3pdsws8jvNhzQzdzLGg,12209
9
- meta_ads_mcp/core/auth.py,sha256=2uFGSD_6l8ExS1CQx7VQnPDq2yIb1fAk_t1BFFGQr7A,16881
10
- meta_ads_mcp/core/authentication.py,sha256=6zoGorswj5kRbrt_18A8KrZdCORNLGHybvb7XRQ1yJg,3474
11
- meta_ads_mcp/core/callback_server.py,sha256=b5TzUz9nEk0i5MWujlls5gAsHru__UjTPJQan1xQ_10,40947
12
- meta_ads_mcp/core/campaigns.py,sha256=u5jNHSxcWlZgzVLNmaeoovA9OcPjSUjTegUMcDLAurs,4381
13
- meta_ads_mcp/core/insights.py,sha256=f4Rs3kG0oqpKl8zBc_nt_zE0z4zvb9i0g12galrDiw8,17376
14
- meta_ads_mcp/core/resources.py,sha256=-zIIfZulpo76vcKv6jhAlQq91cR2SZ3cjYZt3ek3x0w,1236
15
- meta_ads_mcp/core/server.py,sha256=-tClGe4rc-8U2ihgpipLstiTPRg3-CnjsTRgncsNa_A,3055
16
- meta_ads_mcp/core/utils.py,sha256=wxh722z-x0TSJwDEEeDylkv4VJqLmqnkZy-YGRzs4vQ,6049
17
- meta_ads_mcp-0.2.6.dist-info/METADATA,sha256=4UUxhxKMIfZ9bvMfqW6CJb8-6bJibUaXElSsdmrFBa4,15300
18
- meta_ads_mcp-0.2.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
19
- meta_ads_mcp-0.2.6.dist-info/entry_points.txt,sha256=Dv2RkoBjRJBqj6CyhwqGIiwPCD-SCL1-7B9-zmVRuv0,57
20
- meta_ads_mcp-0.2.6.dist-info/RECORD,,