meta-ads-mcp 0.1.0__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.
@@ -0,0 +1,21 @@
1
+ """Meta Ads MCP - Model Calling Protocol plugin for Meta Ads API."""
2
+
3
+ __version__ = "0.1.0"
4
+
5
+ # Import key functions to make them available at package level
6
+ from .meta_ads_generated import (
7
+ get_ad_accounts,
8
+ get_account_info,
9
+ get_campaigns,
10
+ get_campaign_details,
11
+ create_campaign,
12
+ get_adsets,
13
+ get_adset_details,
14
+ get_ads,
15
+ get_ad_details,
16
+ get_ad_creatives,
17
+ get_ad_image,
18
+ get_insights,
19
+ get_login_link,
20
+ login_cli,
21
+ )