meta-ads-mcp 0.11.2__py3-none-any.whl → 0.11.3__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.
meta_ads_mcp/__init__.py CHANGED
@@ -6,7 +6,7 @@ This package provides a Meta Ads MCP integration
6
6
 
7
7
  from meta_ads_mcp.core.server import main
8
8
 
9
- __version__ = "0.11.2"
9
+ __version__ = "0.11.3"
10
10
 
11
11
  __all__ = [
12
12
  'get_ad_accounts',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meta-ads-mcp
3
- Version: 0.11.2
3
+ Version: 0.11.3
4
4
  Summary: Model Context Protocol (MCP) server for interacting with Meta Ads API
5
5
  Project-URL: Homepage, https://github.com/pipeboard-co/meta-ads-mcp
6
6
  Project-URL: Bug Tracker, https://github.com/pipeboard-co/meta-ads-mcp/issues
@@ -13,7 +13,7 @@ Classifier: Operating System :: OS Independent
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Requires-Python: >=3.10
15
15
  Requires-Dist: httpx>=0.26.0
16
- Requires-Dist: mcp[cli]<=1.12.2,>=1.10.1
16
+ Requires-Dist: mcp[cli]==1.12.2
17
17
  Requires-Dist: pathlib>=1.0.1
18
18
  Requires-Dist: pillow>=10.0.0
19
19
  Requires-Dist: pytest-asyncio>=1.0.0
@@ -371,16 +371,16 @@ For local installation configuration, authentication options, and advanced techn
371
371
  - `access_token` (optional): Meta API access token (will use cached token if not provided)
372
372
  - Returns: A clickable resource link for Meta authentication
373
373
 
374
- 22. `mcp_meta-ads_create_budget_schedule`
375
- - Create a budget schedule for a Meta Ads campaign.
374
+ 22. `mcp_meta_ads_create_budget_schedule`
375
+ - Create a budget schedule for a Meta Ads campaign
376
376
  - Inputs:
377
- - `campaign_id`: Meta Ads campaign ID.
378
- - `budget_value`: Amount of budget increase.
379
- - `budget_value_type`: Type of budget value ("ABSOLUTE" or "MULTIPLIER").
380
- - `time_start`: Unix timestamp for when the high demand period should start.
381
- - `time_end`: Unix timestamp for when the high demand period should end.
382
- - `access_token` (optional): Meta API access token.
383
- - Returns: JSON string with the ID of the created budget schedule or an error message.
377
+ - `campaign_id`: Meta Ads campaign ID
378
+ - `budget_value`: Amount of budget increase
379
+ - `budget_value_type`: Type of budget value ("ABSOLUTE" or "MULTIPLIER")
380
+ - `time_start`: Unix timestamp for when the high demand period should start
381
+ - `time_end`: Unix timestamp for when the high demand period should end
382
+ - `access_token` (optional): Meta API access token
383
+ - Returns: JSON string with the ID of the created budget schedule or an error message
384
384
 
385
385
  23. `mcp_meta_ads_search_interests`
386
386
  - Search for interest targeting options by keyword
@@ -398,7 +398,7 @@ For local installation configuration, authentication options, and advanced techn
398
398
  - `limit`: Maximum number of suggestions to return (default: 25)
399
399
  - Returns: Suggested interests with id, name, audience_size, and description fields
400
400
 
401
- 24. `mcp_meta_ads_validate_interests`
401
+ 25. `mcp_meta_ads_validate_interests`
402
402
  - Validate interest names or IDs for targeting
403
403
  - Inputs:
404
404
  - `access_token` (optional): Meta API access token (will use cached token if not provided)
@@ -406,14 +406,14 @@ For local installation configuration, authentication options, and advanced techn
406
406
  - `interest_fbid_list`: List of interest IDs to validate (e.g., ["6003700426513"])
407
407
  - Returns: Validation results showing valid status and audience_size for each interest
408
408
 
409
- 25. `mcp_meta_ads_search_behaviors`
409
+ 26. `mcp_meta_ads_search_behaviors`
410
410
  - Get all available behavior targeting options
411
411
  - Inputs:
412
412
  - `access_token` (optional): Meta API access token (will use cached token if not provided)
413
413
  - `limit`: Maximum number of results to return (default: 50)
414
414
  - Returns: Behavior targeting options with id, name, audience_size bounds, path, and description
415
415
 
416
- 26. `mcp_meta_ads_search_demographics`
416
+ 27. `mcp_meta_ads_search_demographics`
417
417
  - Get demographic targeting options
418
418
  - Inputs:
419
419
  - `access_token` (optional): Meta API access token (will use cached token if not provided)
@@ -421,7 +421,7 @@ For local installation configuration, authentication options, and advanced techn
421
421
  - `limit`: Maximum number of results to return (default: 50)
422
422
  - Returns: Demographic targeting options with id, name, audience_size bounds, path, and description
423
423
 
424
- 27. `mcp_meta_ads_search_geo_locations`
424
+ 28. `mcp_meta_ads_search_geo_locations`
425
425
  - Search for geographic targeting locations
426
426
  - Inputs:
427
427
  - `access_token` (optional): Meta API access token (will use cached token if not provided)
@@ -430,7 +430,7 @@ For local installation configuration, authentication options, and advanced techn
430
430
  - `limit`: Maximum number of results to return (default: 25)
431
431
  - Returns: Location data with key, name, type, and geographic hierarchy information
432
432
 
433
- 28. `mcp_meta_ads_search` (Enhanced)
433
+ 29. `mcp_meta_ads_search` (Enhanced)
434
434
  - Generic search across accounts, campaigns, ads, and pages
435
435
  - Automatically includes page searching when query mentions "page" or "pages"
436
436
  - Inputs:
@@ -479,7 +479,7 @@ The easiest way to avoid any setup issues is to **[🎯 use our Remote MCP inste
479
479
  For comprehensive troubleshooting, debugging, and local installation issues, see our **[Local Installation Guide](LOCAL_INSTALLATION.md)** which includes:
480
480
 
481
481
  - Authentication troubleshooting
482
- - Installation issues and solutions
482
+ - Installation issues and solutions
483
483
  - API error resolution
484
484
  - Debug logs and diagnostic commands
485
- - Performance optimization tips
485
+ - Performance optimization tips
@@ -1,4 +1,4 @@
1
- meta_ads_mcp/__init__.py,sha256=_HR7vonE1f9_lXIt5q071NDx0wXfAzE4_pUd600YZ5w,1477
1
+ meta_ads_mcp/__init__.py,sha256=XuSDqKHzz24tD7w_n-jpx5OHOhle9OiucexV-62FU_4,1477
2
2
  meta_ads_mcp/__main__.py,sha256=XaQt3iXftG_7f0Zu7Wop9SeFgrD2WBn0EQOaPMc27d8,207
3
3
  meta_ads_mcp/core/__init__.py,sha256=IEJtqpyUo0CZSUWeQPljQ-D2vKorTFwXnpBQWSi1hIM,1819
4
4
  meta_ads_mcp/core/accounts.py,sha256=7Zoqq0zMIJi_Xsxe9-_b3EYx-UTeieJJvO7HxVRuUS0,4327
@@ -21,8 +21,8 @@ meta_ads_mcp/core/resources.py,sha256=-zIIfZulpo76vcKv6jhAlQq91cR2SZ3cjYZt3ek3x0
21
21
  meta_ads_mcp/core/server.py,sha256=9SlgM_qvdlxo24ctnZzLgW1e1nfAspCSx3YyJQkKP64,17856
22
22
  meta_ads_mcp/core/targeting.py,sha256=-QziS2MvTWzM02pwiUtId4sblWURd3UYPR_YYfVuiUk,13913
23
23
  meta_ads_mcp/core/utils.py,sha256=ytj41yC5SqduLrAiZYBSd6OUwlJRaIClTwnnYKpNFds,9387
24
- meta_ads_mcp-0.11.2.dist-info/METADATA,sha256=7nrtNc4OjmsqvqbevG4Brw9JVsyZ_772xz9lPMOymgc,24265
25
- meta_ads_mcp-0.11.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
26
- meta_ads_mcp-0.11.2.dist-info/entry_points.txt,sha256=Dv2RkoBjRJBqj6CyhwqGIiwPCD-SCL1-7B9-zmVRuv0,57
27
- meta_ads_mcp-0.11.2.dist-info/licenses/LICENSE,sha256=E2d762fbhwKRYn8o7J6Szr6vyBPrHVDlK3jbHPx-d84,3851
28
- meta_ads_mcp-0.11.2.dist-info/RECORD,,
24
+ meta_ads_mcp-0.11.3.dist-info/METADATA,sha256=-aZjT1svggAzROezO06i6qUHssheEoWUytVXxpG8LEk,24245
25
+ meta_ads_mcp-0.11.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
26
+ meta_ads_mcp-0.11.3.dist-info/entry_points.txt,sha256=Dv2RkoBjRJBqj6CyhwqGIiwPCD-SCL1-7B9-zmVRuv0,57
27
+ meta_ads_mcp-0.11.3.dist-info/licenses/LICENSE,sha256=E2d762fbhwKRYn8o7J6Szr6vyBPrHVDlK3jbHPx-d84,3851
28
+ meta_ads_mcp-0.11.3.dist-info/RECORD,,