universal-mcp-applications 0.1.14__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/outlook/app.py +14 -14
- {universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/METADATA +2 -2
- {universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/RECORD +5 -5
- {universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/licenses/LICENSE +0 -0
|
@@ -37,11 +37,11 @@ class OutlookApp(APIApplication):
|
|
|
37
37
|
"""
|
|
38
38
|
# If user_id is not provided, get it automatically
|
|
39
39
|
if user_id is None:
|
|
40
|
-
user_info = self.
|
|
40
|
+
user_info = self.get_current_user_profile()
|
|
41
41
|
user_id = user_info.get("userPrincipalName")
|
|
42
42
|
if not user_id:
|
|
43
43
|
raise ValueError(
|
|
44
|
-
"Could not retrieve user ID from
|
|
44
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
45
45
|
)
|
|
46
46
|
if message_id is None:
|
|
47
47
|
raise ValueError("Missing required parameter 'message-id'.")
|
|
@@ -88,11 +88,11 @@ class OutlookApp(APIApplication):
|
|
|
88
88
|
"""
|
|
89
89
|
# If user_id is not provided, get it automatically
|
|
90
90
|
if user_id is None:
|
|
91
|
-
user_info = self.
|
|
91
|
+
user_info = self.get_current_user_profile()
|
|
92
92
|
user_id = user_info.get("userPrincipalName")
|
|
93
93
|
if not user_id:
|
|
94
94
|
raise ValueError(
|
|
95
|
-
"Could not retrieve user ID from
|
|
95
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
96
96
|
)
|
|
97
97
|
request_body_data = None
|
|
98
98
|
request_body_data = {
|
|
@@ -141,11 +141,11 @@ class OutlookApp(APIApplication):
|
|
|
141
141
|
"""
|
|
142
142
|
# If user_id is not provided, get it automatically
|
|
143
143
|
if user_id is None:
|
|
144
|
-
user_info = self.
|
|
144
|
+
user_info = self.get_current_user_profile()
|
|
145
145
|
user_id = user_info.get("userPrincipalName")
|
|
146
146
|
if not user_id:
|
|
147
147
|
raise ValueError(
|
|
148
|
-
"Could not retrieve user ID from
|
|
148
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
149
149
|
)
|
|
150
150
|
if mailFolder_id is None:
|
|
151
151
|
raise ValueError("Missing required parameter 'mailFolder-id'.")
|
|
@@ -208,11 +208,11 @@ class OutlookApp(APIApplication):
|
|
|
208
208
|
"""
|
|
209
209
|
# If user_id is not provided, get it automatically
|
|
210
210
|
if user_id is None:
|
|
211
|
-
user_info = self.
|
|
211
|
+
user_info = self.get_current_user_profile()
|
|
212
212
|
user_id = user_info.get("userPrincipalName")
|
|
213
213
|
if not user_id:
|
|
214
214
|
raise ValueError(
|
|
215
|
-
"Could not retrieve user ID from
|
|
215
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
216
216
|
)
|
|
217
217
|
|
|
218
218
|
url = f"{self.base_url}/users/{user_id}/messages"
|
|
@@ -270,11 +270,11 @@ class OutlookApp(APIApplication):
|
|
|
270
270
|
"""
|
|
271
271
|
# If user_id is not provided, get it automatically
|
|
272
272
|
if user_id is None:
|
|
273
|
-
user_info = self.
|
|
273
|
+
user_info = self.get_current_user_profile()
|
|
274
274
|
user_id = user_info.get("userPrincipalName")
|
|
275
275
|
if not user_id:
|
|
276
276
|
raise ValueError(
|
|
277
|
-
"Could not retrieve user ID from
|
|
277
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
278
278
|
)
|
|
279
279
|
if message_id is None:
|
|
280
280
|
raise ValueError("Missing required parameter 'message-id'.")
|
|
@@ -310,11 +310,11 @@ class OutlookApp(APIApplication):
|
|
|
310
310
|
"""
|
|
311
311
|
# If user_id is not provided, get it automatically
|
|
312
312
|
if user_id is None:
|
|
313
|
-
user_info = self.
|
|
313
|
+
user_info = self.get_current_user_profile()
|
|
314
314
|
user_id = user_info.get("userPrincipalName")
|
|
315
315
|
if not user_id:
|
|
316
316
|
raise ValueError(
|
|
317
|
-
"Could not retrieve user ID from
|
|
317
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
318
318
|
)
|
|
319
319
|
if message_id is None:
|
|
320
320
|
raise ValueError("Missing required parameter 'message-id'.")
|
|
@@ -362,11 +362,11 @@ class OutlookApp(APIApplication):
|
|
|
362
362
|
"""
|
|
363
363
|
# If user_id is not provided, get it automatically
|
|
364
364
|
if user_id is None:
|
|
365
|
-
user_info = self.
|
|
365
|
+
user_info = self.get_current_user_profile()
|
|
366
366
|
user_id = user_info.get("userPrincipalName")
|
|
367
367
|
if not user_id:
|
|
368
368
|
raise ValueError(
|
|
369
|
-
"Could not retrieve user ID from
|
|
369
|
+
"Could not retrieve user ID from get_current_user_profile response."
|
|
370
370
|
)
|
|
371
371
|
if message_id is None:
|
|
372
372
|
raise ValueError("Missing required parameter 'message-id'.")
|
{universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: universal-mcp-applications
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.15
|
|
4
4
|
Summary: A Universal MCP Application: universal_mcp_applications
|
|
5
5
|
Project-URL: Homepage, https://github.com/universal-mcp/applications
|
|
6
6
|
Project-URL: Repository, https://github.com/universal-mcp/applications
|
|
@@ -34,7 +34,7 @@ Requires-Dist: replicate>=1.0.6
|
|
|
34
34
|
Requires-Dist: requests>=2.31.0
|
|
35
35
|
Requires-Dist: resend>=2.10.0
|
|
36
36
|
Requires-Dist: twilio>=9.8.0
|
|
37
|
-
Requires-Dist: universal-mcp>=0.1.
|
|
37
|
+
Requires-Dist: universal-mcp>=0.1.24rc21
|
|
38
38
|
Requires-Dist: youtube-transcript-api==1.2.2
|
|
39
39
|
Provides-Extra: dev
|
|
40
40
|
Requires-Dist: pre-commit; extra == 'dev'
|
{universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/RECORD
RENAMED
|
@@ -161,7 +161,7 @@ universal_mcp/applications/openai/__init__.py,sha256=7h2xDZdb1pRh7ZDLtFK9BNDEbRH
|
|
|
161
161
|
universal_mcp/applications/openai/app.py,sha256=77dS3FdbeSkLJx5NkAuzd87QdphKh6ZjGjvN8WjWtr4,34418
|
|
162
162
|
universal_mcp/applications/outlook/README.md,sha256=h6jUIYyO20YJaEJ34pmov7ywhfnwP9qLQC9fwbpP9A4,1603
|
|
163
163
|
universal_mcp/applications/outlook/__init__.py,sha256=yExFpo0apWqcpP7l4qCjAYwMyzomUaEeNDhY7Gi-We0,28
|
|
164
|
-
universal_mcp/applications/outlook/app.py,sha256=
|
|
164
|
+
universal_mcp/applications/outlook/app.py,sha256=OYBM8x3vKOlrSj8naAnrRYWX2QcgGxU0FCOc8IOPb_w,19709
|
|
165
165
|
universal_mcp/applications/perplexity/README.md,sha256=mUXKJHhBgK6H8oyjhlrxcsfuvDrOniIceTBmcR_Oeao,335
|
|
166
166
|
universal_mcp/applications/perplexity/__init__.py,sha256=f4uz8qlw-uek6AlyWxoWxukubaHb6YV4riTcvQhfvO0,31
|
|
167
167
|
universal_mcp/applications/perplexity/app.py,sha256=JgzBdviTyXtUrYePJJbmUcKDuTWJJpvUphT0a5OYVKs,2847
|
|
@@ -267,7 +267,7 @@ universal_mcp/applications/youtube/app.py,sha256=GxTtXbwda044bIqmzxIGX6x3WNejHx0
|
|
|
267
267
|
universal_mcp/applications/zenquotes/README.md,sha256=x1mZHjNKD4WOgsIhedcbbaR1nvbt794GSrKud1tSLD0,296
|
|
268
268
|
universal_mcp/applications/zenquotes/__init__.py,sha256=IkASLYaZiHJXlkGwEMk1HgIq5GwEZp5GhAIiJyjBd3g,30
|
|
269
269
|
universal_mcp/applications/zenquotes/app.py,sha256=S88JEoVFsyqow-56zcYPgRzhcz59AG_L_RdTFqtSwdA,1323
|
|
270
|
-
universal_mcp_applications-0.1.
|
|
271
|
-
universal_mcp_applications-0.1.
|
|
272
|
-
universal_mcp_applications-0.1.
|
|
273
|
-
universal_mcp_applications-0.1.
|
|
270
|
+
universal_mcp_applications-0.1.15.dist-info/METADATA,sha256=mFMj_-I3B0QO6s6sDhnvtUx2YOMHkaAypliFrurrDSw,4024
|
|
271
|
+
universal_mcp_applications-0.1.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
272
|
+
universal_mcp_applications-0.1.15.dist-info/licenses/LICENSE,sha256=NweDZVPslBAZFzlgByF158b85GR0f5_tLQgq1NS48To,1063
|
|
273
|
+
universal_mcp_applications-0.1.15.dist-info/RECORD,,
|
{universal_mcp_applications-0.1.14.dist-info → universal_mcp_applications-0.1.15.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|