universal-mcp-applications 0.1.21__py3-none-any.whl → 0.1.23__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.
Potentially problematic release.
This version of universal-mcp-applications might be problematic. Click here for more details.
- universal_mcp/applications/BEST_PRACTICES.md +166 -0
- universal_mcp/applications/airtable/app.py +0 -1
- universal_mcp/applications/apollo/app.py +0 -1
- universal_mcp/applications/aws_s3/app.py +40 -39
- universal_mcp/applications/browser_use/README.md +1 -0
- universal_mcp/applications/browser_use/__init__.py +0 -0
- universal_mcp/applications/browser_use/app.py +71 -0
- universal_mcp/applications/calendly/app.py +125 -125
- universal_mcp/applications/canva/app.py +95 -99
- universal_mcp/applications/confluence/app.py +0 -1
- universal_mcp/applications/contentful/app.py +4 -5
- universal_mcp/applications/domain_checker/app.py +11 -15
- universal_mcp/applications/e2b/app.py +4 -4
- universal_mcp/applications/elevenlabs/app.py +18 -15
- universal_mcp/applications/exa/app.py +17 -17
- universal_mcp/applications/falai/app.py +28 -29
- universal_mcp/applications/file_system/app.py +9 -9
- universal_mcp/applications/firecrawl/app.py +36 -36
- universal_mcp/applications/fireflies/app.py +55 -56
- universal_mcp/applications/fpl/app.py +49 -50
- universal_mcp/applications/ghost_content/app.py +0 -1
- universal_mcp/applications/github/app.py +41 -43
- universal_mcp/applications/google_calendar/app.py +40 -39
- universal_mcp/applications/google_docs/app.py +168 -232
- universal_mcp/applications/google_drive/app.py +212 -215
- universal_mcp/applications/google_gemini/app.py +1 -5
- universal_mcp/applications/google_mail/app.py +91 -90
- universal_mcp/applications/google_searchconsole/app.py +29 -29
- universal_mcp/applications/google_sheet/app.py +115 -115
- universal_mcp/applications/hashnode/README.md +6 -3
- universal_mcp/applications/hashnode/app.py +174 -25
- universal_mcp/applications/http_tools/app.py +10 -11
- universal_mcp/applications/hubspot/__init__.py +1 -1
- universal_mcp/applications/hubspot/api_segments/api_segment_base.py +36 -7
- universal_mcp/applications/hubspot/api_segments/crm_api.py +368 -368
- universal_mcp/applications/hubspot/api_segments/marketing_api.py +115 -115
- universal_mcp/applications/hubspot/app.py +131 -72
- universal_mcp/applications/jira/app.py +0 -1
- universal_mcp/applications/linkedin/app.py +20 -20
- universal_mcp/applications/markitdown/app.py +10 -5
- universal_mcp/applications/ms_teams/app.py +123 -123
- universal_mcp/applications/openai/app.py +40 -39
- universal_mcp/applications/outlook/app.py +32 -32
- universal_mcp/applications/perplexity/app.py +4 -4
- universal_mcp/applications/reddit/app.py +69 -70
- universal_mcp/applications/resend/app.py +116 -117
- universal_mcp/applications/rocketlane/app.py +0 -1
- universal_mcp/applications/scraper/__init__.py +1 -1
- universal_mcp/applications/scraper/app.py +80 -81
- universal_mcp/applications/serpapi/app.py +14 -14
- universal_mcp/applications/sharepoint/app.py +19 -20
- universal_mcp/applications/shopify/app.py +0 -1
- universal_mcp/applications/slack/app.py +48 -48
- universal_mcp/applications/tavily/app.py +4 -4
- universal_mcp/applications/twitter/api_segments/compliance_api.py +13 -15
- universal_mcp/applications/twitter/api_segments/dm_conversations_api.py +20 -20
- universal_mcp/applications/twitter/api_segments/dm_events_api.py +12 -12
- universal_mcp/applications/twitter/api_segments/likes_api.py +12 -12
- universal_mcp/applications/twitter/api_segments/lists_api.py +37 -39
- universal_mcp/applications/twitter/api_segments/spaces_api.py +24 -24
- universal_mcp/applications/twitter/api_segments/trends_api.py +4 -4
- universal_mcp/applications/twitter/api_segments/tweets_api.py +105 -105
- universal_mcp/applications/twitter/api_segments/usage_api.py +4 -4
- universal_mcp/applications/twitter/api_segments/users_api.py +136 -136
- universal_mcp/applications/twitter/app.py +6 -2
- universal_mcp/applications/unipile/app.py +90 -97
- universal_mcp/applications/whatsapp/app.py +53 -54
- universal_mcp/applications/whatsapp/audio.py +39 -35
- universal_mcp/applications/whatsapp/whatsapp.py +176 -154
- universal_mcp/applications/whatsapp_business/app.py +92 -92
- universal_mcp/applications/yahoo_finance/app.py +105 -63
- universal_mcp/applications/youtube/app.py +193 -196
- universal_mcp/applications/zenquotes/__init__.py +2 -0
- universal_mcp/applications/zenquotes/app.py +5 -5
- {universal_mcp_applications-0.1.21.dist-info → universal_mcp_applications-0.1.23.dist-info}/METADATA +2 -1
- {universal_mcp_applications-0.1.21.dist-info → universal_mcp_applications-0.1.23.dist-info}/RECORD +78 -74
- {universal_mcp_applications-0.1.21.dist-info → universal_mcp_applications-0.1.23.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.21.dist-info → universal_mcp_applications-0.1.23.dist-info}/licenses/LICENSE +0 -0
|
@@ -17,14 +17,14 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
17
17
|
def delete_sitemap(self, siteUrl: str, feedpath: str) -> None:
|
|
18
18
|
"""
|
|
19
19
|
Deletes a specific sitemap from a Google Search Console property using its URL (`feedpath`). This function is distinct from `delete_site`, which removes the entire site property, not just a single sitemap file. It issues an HTTP DELETE request to the specified API endpoint.
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
Args:
|
|
22
22
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
23
23
|
feedpath (str): The URL of the sitemap to delete. Example: 'http://www.example.com/sitemap.xml'.
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
Returns:
|
|
26
26
|
None: If the request is successful.
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
Tags:
|
|
29
29
|
sitemap_management
|
|
30
30
|
"""
|
|
@@ -39,14 +39,14 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
39
39
|
def get_sitemap(self, siteUrl: str, feedpath: str) -> dict[str, Any]:
|
|
40
40
|
"""
|
|
41
41
|
Retrieves detailed information for a single sitemap from a specified Google Search Console property. Unlike `list_sitemaps` which fetches all sitemaps, this function targets one sitemap by its URL (`feedpath`) to return its resource details, including status and last processed date.
|
|
42
|
-
|
|
42
|
+
|
|
43
43
|
Args:
|
|
44
44
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
45
45
|
feedpath (str): The URL of the sitemap to retrieve. Example: 'http://www.example.com/sitemap.xml'.
|
|
46
|
-
|
|
46
|
+
|
|
47
47
|
Returns:
|
|
48
48
|
Dict[str, Any]: Sitemap resource.
|
|
49
|
-
|
|
49
|
+
|
|
50
50
|
Tags:
|
|
51
51
|
sitemap_management
|
|
52
52
|
"""
|
|
@@ -63,15 +63,15 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
63
63
|
) -> dict[str, Any]:
|
|
64
64
|
"""
|
|
65
65
|
Retrieves a list of sitemaps for a specific site property. It can optionally list sitemaps contained within a specified sitemap index file. This function contrasts with `get_sitemap`, which fetches details for only a single, specified sitemap rather than a collection.
|
|
66
|
-
|
|
66
|
+
|
|
67
67
|
Args:
|
|
68
68
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
69
69
|
sitemapIndex (Optional[str]): The URL of the sitemap index.
|
|
70
70
|
Example: 'http://www.example.com/sitemap_index.xml'.
|
|
71
|
-
|
|
71
|
+
|
|
72
72
|
Returns:
|
|
73
73
|
Dict[str, Any]: List of sitemap resources.
|
|
74
|
-
|
|
74
|
+
|
|
75
75
|
Tags:
|
|
76
76
|
sitemap_management, important
|
|
77
77
|
"""
|
|
@@ -89,14 +89,14 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
89
89
|
def submit_sitemap(self, siteUrl: str, feedpath: str) -> None:
|
|
90
90
|
"""
|
|
91
91
|
Submits a sitemap to a specified Google Search Console property using its URL (feedpath). It notifies Google to crawl the sitemap's location, complementing other sitemap management functions (`list_sitemaps`, `delete_sitemap`) by adding or updating a sitemap's registration for a given site.
|
|
92
|
-
|
|
92
|
+
|
|
93
93
|
Args:
|
|
94
94
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
95
95
|
feedpath (str): The URL of the sitemap to submit. Example: 'http://www.example.com/sitemap.xml'.
|
|
96
|
-
|
|
96
|
+
|
|
97
97
|
Returns:
|
|
98
98
|
None: If the request is successful.
|
|
99
|
-
|
|
99
|
+
|
|
100
100
|
Tags:
|
|
101
101
|
sitemap_management
|
|
102
102
|
"""
|
|
@@ -113,13 +113,13 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
113
113
|
def add_site(self, siteUrl: str) -> dict[str, Any]:
|
|
114
114
|
"""
|
|
115
115
|
Adds a site property to the user's Google Search Console account using its URL. This action requires subsequent ownership verification. Unlike `list_sites`, which only retrieves existing properties, this function creates a new entry and returns the corresponding site resource upon successful creation.
|
|
116
|
-
|
|
116
|
+
|
|
117
117
|
Args:
|
|
118
118
|
siteUrl (str): The URL of the site to add. Example: 'http://www.example.com/'.
|
|
119
|
-
|
|
119
|
+
|
|
120
120
|
Returns:
|
|
121
121
|
Dict[str, Any]: Site resource upon successful addition.
|
|
122
|
-
|
|
122
|
+
|
|
123
123
|
Tags:
|
|
124
124
|
site_management, important
|
|
125
125
|
"""
|
|
@@ -135,13 +135,13 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
135
135
|
def delete_site(self, siteUrl: str) -> None:
|
|
136
136
|
"""
|
|
137
137
|
Removes a website property from the user's Google Search Console account using its URL. Unlike `delete_sitemap`, which only targets a sitemap file, this function deletes the entire site property, revoking management access and removing it from the user's list of managed sites.
|
|
138
|
-
|
|
138
|
+
|
|
139
139
|
Args:
|
|
140
140
|
siteUrl (str): The URL of the site to delete. Example: 'http://www.example.com/'.
|
|
141
|
-
|
|
141
|
+
|
|
142
142
|
Returns:
|
|
143
143
|
None: If the request is successful.
|
|
144
|
-
|
|
144
|
+
|
|
145
145
|
Tags:
|
|
146
146
|
site_management
|
|
147
147
|
"""
|
|
@@ -153,13 +153,13 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
153
153
|
def get_site(self, siteUrl: str) -> dict[str, Any]:
|
|
154
154
|
"""
|
|
155
155
|
Retrieves detailed information for a specific site property from Google Search Console using its URL. Unlike `list_sites`, which fetches all properties associated with the user's account, this function targets and returns the resource for a single, known site.
|
|
156
|
-
|
|
156
|
+
|
|
157
157
|
Args:
|
|
158
158
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
159
|
-
|
|
159
|
+
|
|
160
160
|
Returns:
|
|
161
161
|
Dict[str, Any]: Site resource.
|
|
162
|
-
|
|
162
|
+
|
|
163
163
|
Tags:
|
|
164
164
|
site_management
|
|
165
165
|
"""
|
|
@@ -172,10 +172,10 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
172
172
|
def list_sites(self) -> dict[str, Any]:
|
|
173
173
|
"""
|
|
174
174
|
Retrieves all websites and domain properties the authenticated user manages in Google Search Console. While `get_site` fetches a single, specific property, this function returns a comprehensive list of all sites linked to the user's account, providing a complete overview of managed properties.
|
|
175
|
-
|
|
175
|
+
|
|
176
176
|
Returns:
|
|
177
177
|
Dict[str, Any]: List of site resources.
|
|
178
|
-
|
|
178
|
+
|
|
179
179
|
Tags:
|
|
180
180
|
site_management
|
|
181
181
|
"""
|
|
@@ -191,16 +191,16 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
191
191
|
) -> dict[str, Any]:
|
|
192
192
|
"""
|
|
193
193
|
Retrieves the Google Index status for a specified URL within a given Search Console property. This function queries the URL Inspection API to return detailed information about how Google sees the page, including its indexing eligibility and any detected issues.
|
|
194
|
-
|
|
194
|
+
|
|
195
195
|
Args:
|
|
196
196
|
inspectionUrl (str): The URL to inspect. Example: 'https://www.example.com/mypage'.
|
|
197
197
|
siteUrl (str): The site URL (property) to inspect the URL under.
|
|
198
198
|
Must be a property in Search Console. Example: 'sc-domain:example.com' or 'https://www.example.com/'.
|
|
199
199
|
languageCode (Optional[str]): Optional. The BCP-47 language code for the inspection. Example: 'en-US'.
|
|
200
|
-
|
|
200
|
+
|
|
201
201
|
Returns:
|
|
202
202
|
Dict[str, Any]: Inspection result containing details about the URL's indexing status.
|
|
203
|
-
|
|
203
|
+
|
|
204
204
|
Tags:
|
|
205
205
|
url_inspection, indexing
|
|
206
206
|
"""
|
|
@@ -234,7 +234,7 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
234
234
|
) -> dict[str, Any]:
|
|
235
235
|
"""
|
|
236
236
|
Queries and retrieves search traffic data for a specified site within a given date range. Supports advanced filtering, grouping by various dimensions (e.g., query, page, device), and aggregation to customize the analytics report from the Google Search Console API.
|
|
237
|
-
|
|
237
|
+
|
|
238
238
|
Args:
|
|
239
239
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
240
240
|
startDate (str): Start date of the requested period in YYYY-MM-DD format.
|
|
@@ -264,10 +264,10 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
264
264
|
search_type (Optional[str]): Filter by search type.
|
|
265
265
|
Example: "web", "image", "video", "news", "discover", "googleNews".
|
|
266
266
|
This corresponds to the 'type' parameter in the API.
|
|
267
|
-
|
|
267
|
+
|
|
268
268
|
Returns:
|
|
269
269
|
Dict[str, Any]: Search analytics data.
|
|
270
|
-
|
|
270
|
+
|
|
271
271
|
Tags:
|
|
272
272
|
search_analytics, reporting
|
|
273
273
|
"""
|