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 +21 -3
- meta_ads_mcp/api.py +360 -273
- meta_ads_mcp/core/__init__.py +1 -2
- meta_ads_mcp/core/accounts.py +3 -0
- meta_ads_mcp/core/ads.py +5 -0
- meta_ads_mcp/core/adsets.py +52 -28
- meta_ads_mcp/core/api.py +112 -103
- meta_ads_mcp/core/auth.py +459 -12
- meta_ads_mcp/core/authentication.py +11 -4
- meta_ads_mcp/core/campaigns.py +4 -0
- meta_ads_mcp/core/insights.py +4 -1
- meta_ads_mcp/core/server.py +33 -5
- meta_ads_mcp/core/utils.py +43 -0
- {meta_ads_mcp-0.2.3.dist-info → meta_ads_mcp-0.2.4.dist-info}/METADATA +56 -32
- meta_ads_mcp-0.2.4.dist-info/RECORD +19 -0
- meta_ads_mcp-0.2.3.dist-info/RECORD +0 -19
- {meta_ads_mcp-0.2.3.dist-info → meta_ads_mcp-0.2.4.dist-info}/WHEEL +0 -0
- {meta_ads_mcp-0.2.3.dist-info → meta_ads_mcp-0.2.4.dist-info}/entry_points.txt +0 -0
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.
|
|
10
|
+
__version__ = "0.2.4"
|
|
11
11
|
|
|
12
|
-
__all__ = [
|
|
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
|