meta-ads-mcp 0.2.3__py3-none-any.whl → 0.2.4__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
@@ -7,9 +7,27 @@ with the Claude LLM.
7
7
 
8
8
  from meta_ads_mcp.core.server import main
9
9
 
10
- __version__ = "0.2.3"
10
+ __version__ = "0.2.4"
11
11
 
12
- __all__ = ["main"]
12
+ __all__ = [
13
+ 'get_ad_accounts',
14
+ 'get_account_info',
15
+ 'get_campaigns',
16
+ 'get_campaign_details',
17
+ 'create_campaign',
18
+ 'get_adsets',
19
+ 'get_adset_details',
20
+ 'update_adset',
21
+ 'get_ads',
22
+ 'get_ad_details',
23
+ 'get_ad_creatives',
24
+ 'get_ad_image',
25
+ 'get_insights',
26
+ 'debug_image_download',
27
+ 'get_login_link',
28
+ 'login_cli',
29
+ 'main'
30
+ ]
13
31
 
14
32
  # Import key functions to make them available at package level
15
33
  from .core import (
@@ -27,9 +45,9 @@ from .core import (
27
45
  get_ad_image,
28
46
  get_insights,
29
47
  debug_image_download,
30
- save_ad_image_via_api,
31
48
  get_login_link,
32
49
  login_cli,
50
+ main
33
51
  )
34
52
 
35
53
  # Define a main function to be used as a package entry point