universal-mcp-applications 0.1.13__py3-none-any.whl → 0.1.15__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/aws_s3/app.py +71 -71
- universal_mcp/applications/calendly/app.py +199 -199
- universal_mcp/applications/canva/app.py +189 -189
- universal_mcp/applications/domain_checker/app.py +31 -24
- universal_mcp/applications/e2b/app.py +6 -7
- universal_mcp/applications/elevenlabs/app.py +24 -20
- universal_mcp/applications/exa/app.py +25 -20
- universal_mcp/applications/falai/app.py +44 -41
- universal_mcp/applications/file_system/app.py +20 -12
- universal_mcp/applications/firecrawl/app.py +46 -47
- universal_mcp/applications/fireflies/app.py +79 -79
- universal_mcp/applications/fpl/app.py +83 -74
- universal_mcp/applications/github/README.md +0 -1028
- universal_mcp/applications/github/app.py +55 -50227
- universal_mcp/applications/google_calendar/app.py +63 -65
- universal_mcp/applications/google_docs/app.py +78 -78
- universal_mcp/applications/google_drive/app.py +361 -440
- universal_mcp/applications/google_gemini/app.py +34 -17
- universal_mcp/applications/google_mail/app.py +117 -117
- universal_mcp/applications/google_searchconsole/app.py +41 -47
- universal_mcp/applications/google_sheet/app.py +157 -164
- universal_mcp/applications/http_tools/app.py +16 -16
- universal_mcp/applications/linkedin/app.py +26 -31
- universal_mcp/applications/ms_teams/app.py +190 -190
- universal_mcp/applications/openai/app.py +55 -56
- universal_mcp/applications/outlook/app.py +71 -71
- universal_mcp/applications/perplexity/app.py +17 -17
- universal_mcp/applications/reddit/app.py +225 -4053
- universal_mcp/applications/replicate/app.py +40 -42
- universal_mcp/applications/resend/app.py +157 -154
- universal_mcp/applications/scraper/app.py +24 -24
- universal_mcp/applications/serpapi/app.py +18 -20
- universal_mcp/applications/sharepoint/app.py +46 -36
- universal_mcp/applications/slack/app.py +66 -66
- universal_mcp/applications/tavily/app.py +7 -7
- universal_mcp/applications/twitter/api_segments/compliance_api.py +17 -20
- universal_mcp/applications/twitter/api_segments/dm_conversations_api.py +35 -40
- universal_mcp/applications/twitter/api_segments/dm_events_api.py +18 -21
- universal_mcp/applications/twitter/api_segments/likes_api.py +19 -22
- universal_mcp/applications/twitter/api_segments/lists_api.py +59 -68
- universal_mcp/applications/twitter/api_segments/spaces_api.py +36 -42
- universal_mcp/applications/twitter/api_segments/trends_api.py +7 -8
- universal_mcp/applications/twitter/api_segments/tweets_api.py +159 -185
- universal_mcp/applications/twitter/api_segments/usage_api.py +5 -6
- universal_mcp/applications/twitter/api_segments/users_api.py +230 -264
- universal_mcp/applications/unipile/app.py +99 -105
- universal_mcp/applications/whatsapp/app.py +86 -82
- universal_mcp/applications/whatsapp_business/app.py +147 -147
- universal_mcp/applications/youtube/app.py +290 -290
- universal_mcp/applications/zenquotes/app.py +6 -6
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.15.dist-info}/METADATA +2 -2
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.15.dist-info}/RECORD +54 -54
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.15.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.15.dist-info}/licenses/LICENSE +0 -0
|
@@ -16,15 +16,15 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
16
16
|
|
|
17
17
|
def delete_sitemap(self, siteUrl: str, feedpath: str) -> None:
|
|
18
18
|
"""
|
|
19
|
-
Deletes a sitemap from
|
|
20
|
-
|
|
19
|
+
Deletes a sitemap from a specified Google Search Console property. It targets the sitemap using the site's URL and the sitemap's `feedpath`, then issues an HTTP DELETE request. This action is distinct from `delete_site`, which removes the entire property, not just a sitemap.
|
|
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
|
"""
|
|
@@ -38,15 +38,15 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
38
38
|
|
|
39
39
|
def get_sitemap(self, siteUrl: str, feedpath: str) -> dict[str, Any]:
|
|
40
40
|
"""
|
|
41
|
-
Retrieves information
|
|
42
|
-
|
|
41
|
+
Retrieves detailed information for a single, specific sitemap using its full URL (`feedpath`). Unlike `list_sitemaps`, which fetches all sitemaps for a site, this function targets and returns one sitemap resource, providing its status, last processed date, and other API metadata.
|
|
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
|
"""
|
|
@@ -62,17 +62,16 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
62
62
|
self, siteUrl: str, sitemapIndex: str | None = None
|
|
63
63
|
) -> dict[str, Any]:
|
|
64
64
|
"""
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
Retrieves a list of sitemaps submitted for a specific site. Optionally, it can list the sitemaps contained within a specified sitemap index file instead of all sitemaps for the site. This contrasts with get_sitemap, which fetches a single sitemap's details.
|
|
66
|
+
|
|
68
67
|
Args:
|
|
69
68
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
70
69
|
sitemapIndex (Optional[str]): The URL of the sitemap index.
|
|
71
70
|
Example: 'http://www.example.com/sitemap_index.xml'.
|
|
72
|
-
|
|
71
|
+
|
|
73
72
|
Returns:
|
|
74
73
|
Dict[str, Any]: List of sitemap resources.
|
|
75
|
-
|
|
74
|
+
|
|
76
75
|
Tags:
|
|
77
76
|
sitemap_management, important
|
|
78
77
|
"""
|
|
@@ -89,15 +88,15 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
89
88
|
|
|
90
89
|
def submit_sitemap(self, siteUrl: str, feedpath: str) -> None:
|
|
91
90
|
"""
|
|
92
|
-
Submits a sitemap
|
|
93
|
-
|
|
91
|
+
Submits a sitemap to a specified Google Search Console site property. This function notifies Google of the sitemap's location for crawling via a PUT request. It is the primary action for adding or updating a sitemap, complementing `get_sitemap`, `list_sitemaps`, and `delete_sitemap`.
|
|
92
|
+
|
|
94
93
|
Args:
|
|
95
94
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
96
95
|
feedpath (str): The URL of the sitemap to submit. Example: 'http://www.example.com/sitemap.xml'.
|
|
97
|
-
|
|
96
|
+
|
|
98
97
|
Returns:
|
|
99
98
|
None: If the request is successful.
|
|
100
|
-
|
|
99
|
+
|
|
101
100
|
Tags:
|
|
102
101
|
sitemap_management
|
|
103
102
|
"""
|
|
@@ -113,16 +112,14 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
113
112
|
|
|
114
113
|
def add_site(self, siteUrl: str) -> dict[str, Any]:
|
|
115
114
|
"""
|
|
116
|
-
Adds a site to the
|
|
117
|
-
|
|
118
|
-
If successful, this method returns a site resource in the response body.
|
|
119
|
-
|
|
115
|
+
Adds a site to the user's Google Search Console account, which requires subsequent ownership verification. Upon success, it returns a dictionary containing the site resource. This method creates a new site entry, unlike `list_sites` which only retrieves existing ones.
|
|
116
|
+
|
|
120
117
|
Args:
|
|
121
118
|
siteUrl (str): The URL of the site to add. Example: 'http://www.example.com/'.
|
|
122
|
-
|
|
119
|
+
|
|
123
120
|
Returns:
|
|
124
121
|
Dict[str, Any]: Site resource upon successful addition.
|
|
125
|
-
|
|
122
|
+
|
|
126
123
|
Tags:
|
|
127
124
|
site_management, important
|
|
128
125
|
"""
|
|
@@ -137,15 +134,14 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
137
134
|
|
|
138
135
|
def delete_site(self, siteUrl: str) -> None:
|
|
139
136
|
"""
|
|
140
|
-
Removes a
|
|
141
|
-
|
|
142
|
-
|
|
137
|
+
Removes a website property from the user's Google Search Console account using its URL. This function sends a DELETE request to the API, distinguishing it from `delete_sitemap` which only removes a sitemap file rather than the entire site property from the user's management list.
|
|
138
|
+
|
|
143
139
|
Args:
|
|
144
140
|
siteUrl (str): The URL of the site to delete. Example: 'http://www.example.com/'.
|
|
145
|
-
|
|
141
|
+
|
|
146
142
|
Returns:
|
|
147
143
|
None: If the request is successful.
|
|
148
|
-
|
|
144
|
+
|
|
149
145
|
Tags:
|
|
150
146
|
site_management
|
|
151
147
|
"""
|
|
@@ -156,14 +152,14 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
156
152
|
|
|
157
153
|
def get_site(self, siteUrl: str) -> dict[str, Any]:
|
|
158
154
|
"""
|
|
159
|
-
Retrieves
|
|
160
|
-
|
|
155
|
+
Retrieves the resource for a specific site property from Google Search Console, using its URL as an identifier. Unlike `list_sites`, which retrieves all user properties, this function fetches detailed information for a single, known site.
|
|
156
|
+
|
|
161
157
|
Args:
|
|
162
158
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
163
|
-
|
|
159
|
+
|
|
164
160
|
Returns:
|
|
165
161
|
Dict[str, Any]: Site resource.
|
|
166
|
-
|
|
162
|
+
|
|
167
163
|
Tags:
|
|
168
164
|
site_management
|
|
169
165
|
"""
|
|
@@ -175,11 +171,11 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
175
171
|
|
|
176
172
|
def list_sites(self) -> dict[str, Any]:
|
|
177
173
|
"""
|
|
178
|
-
|
|
179
|
-
|
|
174
|
+
Retrieves a list of all websites and domain properties the authenticated user can access in Google Search Console. Unlike `get_site`, which fetches a single property, this function returns a comprehensive overview of all managed sites associated with the user's account.
|
|
175
|
+
|
|
180
176
|
Returns:
|
|
181
177
|
Dict[str, Any]: List of site resources.
|
|
182
|
-
|
|
178
|
+
|
|
183
179
|
Tags:
|
|
184
180
|
site_management
|
|
185
181
|
"""
|
|
@@ -190,21 +186,21 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
190
186
|
|
|
191
187
|
# --- URL Inspection ---
|
|
192
188
|
|
|
193
|
-
def
|
|
189
|
+
def inspect_url(
|
|
194
190
|
self, inspectionUrl: str, siteUrl: str, languageCode: str | None = None
|
|
195
191
|
) -> dict[str, Any]:
|
|
196
192
|
"""
|
|
197
|
-
|
|
198
|
-
|
|
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
|
+
|
|
199
195
|
Args:
|
|
200
196
|
inspectionUrl (str): The URL to inspect. Example: 'https://www.example.com/mypage'.
|
|
201
197
|
siteUrl (str): The site URL (property) to inspect the URL under.
|
|
202
198
|
Must be a property in Search Console. Example: 'sc-domain:example.com' or 'https://www.example.com/'.
|
|
203
199
|
languageCode (Optional[str]): Optional. The BCP-47 language code for the inspection. Example: 'en-US'.
|
|
204
|
-
|
|
200
|
+
|
|
205
201
|
Returns:
|
|
206
202
|
Dict[str, Any]: Inspection result containing details about the URL's indexing status.
|
|
207
|
-
|
|
203
|
+
|
|
208
204
|
Tags:
|
|
209
205
|
url_inspection, indexing
|
|
210
206
|
"""
|
|
@@ -237,10 +233,8 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
237
233
|
search_type: str | None = None, # 'type' is a reserved keyword in Python
|
|
238
234
|
) -> dict[str, Any]:
|
|
239
235
|
"""
|
|
240
|
-
Queries
|
|
241
|
-
|
|
242
|
-
You must define a date range of one or more days.
|
|
243
|
-
|
|
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
|
+
|
|
244
238
|
Args:
|
|
245
239
|
siteUrl (str): The site's URL, including protocol (e.g. 'http://www.example.com/').
|
|
246
240
|
startDate (str): Start date of the requested period in YYYY-MM-DD format.
|
|
@@ -270,10 +264,10 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
270
264
|
search_type (Optional[str]): Filter by search type.
|
|
271
265
|
Example: "web", "image", "video", "news", "discover", "googleNews".
|
|
272
266
|
This corresponds to the 'type' parameter in the API.
|
|
273
|
-
|
|
267
|
+
|
|
274
268
|
Returns:
|
|
275
269
|
Dict[str, Any]: Search analytics data.
|
|
276
|
-
|
|
270
|
+
|
|
277
271
|
Tags:
|
|
278
272
|
search_analytics, reporting
|
|
279
273
|
"""
|
|
@@ -315,6 +309,6 @@ class GoogleSearchconsoleApp(APIApplication):
|
|
|
315
309
|
self.list_sites,
|
|
316
310
|
self.add_site,
|
|
317
311
|
self.delete_site,
|
|
318
|
-
self.
|
|
312
|
+
self.inspect_url,
|
|
319
313
|
self.query_search_analytics,
|
|
320
314
|
]
|