universal-mcp-applications 0.1.20__py3-none-any.whl → 0.1.22__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 +76 -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 +56 -56
- 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 +234 -16
- 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 +321 -71
- 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 +206 -199
- universal_mcp/applications/zenquotes/__init__.py +2 -0
- universal_mcp/applications/zenquotes/app.py +3 -3
- {universal_mcp_applications-0.1.20.dist-info → universal_mcp_applications-0.1.22.dist-info}/METADATA +2 -1
- {universal_mcp_applications-0.1.20.dist-info → universal_mcp_applications-0.1.22.dist-info}/RECORD +78 -74
- {universal_mcp_applications-0.1.20.dist-info → universal_mcp_applications-0.1.22.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.20.dist-info → universal_mcp_applications-0.1.22.dist-info}/licenses/LICENSE +0 -0
|
@@ -22,7 +22,7 @@ class MsTeamsApp(APIApplication):
|
|
|
22
22
|
) -> dict[str, Any]:
|
|
23
23
|
"""
|
|
24
24
|
Retrieves a collection of chats the authenticated user is participating in. Supports optional OData query parameters for advanced filtering, sorting, pagination, and field selection, enabling customized data retrieval from the Microsoft Graph API.
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
Args:
|
|
27
27
|
top (integer): Show only the first n items Example: '50'.
|
|
28
28
|
skip (integer): Skip the first n items
|
|
@@ -32,13 +32,13 @@ class MsTeamsApp(APIApplication):
|
|
|
32
32
|
orderby (array): Order items by property values
|
|
33
33
|
select (array): Select properties to be returned
|
|
34
34
|
expand (array): Expand related entities
|
|
35
|
-
|
|
35
|
+
|
|
36
36
|
Returns:
|
|
37
37
|
dict[str, Any]: Retrieved collection
|
|
38
|
-
|
|
38
|
+
|
|
39
39
|
Raises:
|
|
40
40
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
41
|
-
|
|
41
|
+
|
|
42
42
|
Tags:
|
|
43
43
|
chats.chat, important
|
|
44
44
|
"""
|
|
@@ -63,13 +63,13 @@ class MsTeamsApp(APIApplication):
|
|
|
63
63
|
def get_joined_teams(self) -> list[dict[str, Any]]:
|
|
64
64
|
"""
|
|
65
65
|
Fetches all Microsoft Teams the authenticated user belongs to by querying the `/me/joinedTeams` Graph API endpoint. It returns a list of dictionaries, where each dictionary represents a single team's details, unlike functions that list channels or chats for a specific team.
|
|
66
|
-
|
|
66
|
+
|
|
67
67
|
Returns:
|
|
68
68
|
A list of dictionaries, where each dictionary represents a team.
|
|
69
|
-
|
|
69
|
+
|
|
70
70
|
Raises:
|
|
71
71
|
httpx.HTTPStatusError: If the API request fails due to authentication or other issues.
|
|
72
|
-
|
|
72
|
+
|
|
73
73
|
Tags:
|
|
74
74
|
read, list, teams, microsoft-teams, api, important
|
|
75
75
|
"""
|
|
@@ -93,7 +93,7 @@ class MsTeamsApp(APIApplication):
|
|
|
93
93
|
) -> dict[str, Any]:
|
|
94
94
|
"""
|
|
95
95
|
Retrieves the collection of channels for a specified Microsoft Teams team by its ID. It supports advanced OData query parameters for filtering, sorting, and pagination, distinguishing it from functions that fetch single channels like `get_channel_details`.
|
|
96
|
-
|
|
96
|
+
|
|
97
97
|
Args:
|
|
98
98
|
team_id (string): team-id
|
|
99
99
|
top (integer): Show only the first n items Example: '50'.
|
|
@@ -104,13 +104,13 @@ class MsTeamsApp(APIApplication):
|
|
|
104
104
|
orderby (array): Order items by property values
|
|
105
105
|
select (array): Select properties to be returned
|
|
106
106
|
expand (array): Expand related entities
|
|
107
|
-
|
|
107
|
+
|
|
108
108
|
Returns:
|
|
109
109
|
dict[str, Any]: Retrieved collection
|
|
110
|
-
|
|
110
|
+
|
|
111
111
|
Raises:
|
|
112
112
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
113
|
-
|
|
113
|
+
|
|
114
114
|
Tags:
|
|
115
115
|
teams.channel, important
|
|
116
116
|
"""
|
|
@@ -137,17 +137,17 @@ class MsTeamsApp(APIApplication):
|
|
|
137
137
|
def send_chat_message(self, chat_id: str, content: str) -> dict[str, Any]:
|
|
138
138
|
"""
|
|
139
139
|
Posts a new message to a specific Microsoft Teams chat using its unique ID. This function targets direct or group chats, distinguishing it from `send_channel_message`, which posts to public team channels, and `reply_to_chat_message`, which responds to existing messages.
|
|
140
|
-
|
|
140
|
+
|
|
141
141
|
Args:
|
|
142
142
|
chat_id: The unique identifier of the chat.
|
|
143
143
|
content: The message content to send (can be plain text or HTML).
|
|
144
|
-
|
|
144
|
+
|
|
145
145
|
Returns:
|
|
146
146
|
A dictionary containing the API response for the sent message, including its ID.
|
|
147
|
-
|
|
147
|
+
|
|
148
148
|
Raises:
|
|
149
149
|
httpx.HTTPStatusError: If the API request fails due to invalid ID, permissions, etc.
|
|
150
|
-
|
|
150
|
+
|
|
151
151
|
Tags:
|
|
152
152
|
create, send, message, chat, microsoft-teams, api, important
|
|
153
153
|
"""
|
|
@@ -161,18 +161,18 @@ class MsTeamsApp(APIApplication):
|
|
|
161
161
|
) -> dict[str, Any]:
|
|
162
162
|
"""
|
|
163
163
|
Posts a new message to a specified team channel, initiating a new conversation thread. Unlike `reply_to_channel_message`, which replies to a message, this function starts a new topic. It's distinct from `send_chat_message`, which is for private or group chats, not team channels.
|
|
164
|
-
|
|
164
|
+
|
|
165
165
|
Args:
|
|
166
166
|
team_id: The unique identifier of the team.
|
|
167
167
|
channel_id: The unique identifier of the channel within the team.
|
|
168
168
|
content: The message content to send (can be plain text or HTML).
|
|
169
|
-
|
|
169
|
+
|
|
170
170
|
Returns:
|
|
171
171
|
A dictionary containing the API response for the sent message, including its ID.
|
|
172
|
-
|
|
172
|
+
|
|
173
173
|
Raises:
|
|
174
174
|
httpx.HTTPStatusError: If the API request fails due to invalid IDs, permissions, etc.
|
|
175
|
-
|
|
175
|
+
|
|
176
176
|
Tags:
|
|
177
177
|
create, send, message, channel, microsoft-teams, api, important
|
|
178
178
|
"""
|
|
@@ -186,19 +186,19 @@ class MsTeamsApp(APIApplication):
|
|
|
186
186
|
) -> dict[str, Any]:
|
|
187
187
|
"""
|
|
188
188
|
Posts a reply to a specific message within a Microsoft Teams channel. It uses the team, channel, and original message IDs to target an existing conversation thread, distinguishing it from `send_channel_message` which starts a new one.
|
|
189
|
-
|
|
189
|
+
|
|
190
190
|
Args:
|
|
191
191
|
team_id: The unique identifier of the team.
|
|
192
192
|
channel_id: The unique identifier of the channel.
|
|
193
193
|
message_id: The unique identifier of the message to reply to.
|
|
194
194
|
content: The reply message content (can be plain text or HTML).
|
|
195
|
-
|
|
195
|
+
|
|
196
196
|
Returns:
|
|
197
197
|
A dictionary containing the API response for the sent reply, including its ID.
|
|
198
|
-
|
|
198
|
+
|
|
199
199
|
Raises:
|
|
200
200
|
httpx.HTTPStatusError: If the API request fails due to invalid IDs, permissions, etc.
|
|
201
|
-
|
|
201
|
+
|
|
202
202
|
Tags:
|
|
203
203
|
create, send, reply, message, channel, microsoft-teams, api, important
|
|
204
204
|
"""
|
|
@@ -229,7 +229,7 @@ class MsTeamsApp(APIApplication):
|
|
|
229
229
|
) -> Any:
|
|
230
230
|
"""
|
|
231
231
|
Creates a new one-on-one or group chat in Microsoft Teams. This function provisions a new conversation using optional parameters like chatType and members, distinguishing it from functions that create teams (`create_team`) or send messages to existing chats (`send_chat_message`).
|
|
232
|
-
|
|
232
|
+
|
|
233
233
|
Args:
|
|
234
234
|
id (string): The unique identifier for an entity. Read-only.
|
|
235
235
|
chatType (string): chatType
|
|
@@ -248,13 +248,13 @@ class MsTeamsApp(APIApplication):
|
|
|
248
248
|
permissionGrants (array): A collection of permissions granted to apps for the chat.
|
|
249
249
|
pinnedMessages (array): A collection of all the pinned messages in the chat. Nullable.
|
|
250
250
|
tabs (array): A collection of all the tabs in the chat. Nullable.
|
|
251
|
-
|
|
251
|
+
|
|
252
252
|
Returns:
|
|
253
253
|
Any: Created entity
|
|
254
|
-
|
|
254
|
+
|
|
255
255
|
Raises:
|
|
256
256
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
257
|
-
|
|
257
|
+
|
|
258
258
|
Tags:
|
|
259
259
|
chats.chat
|
|
260
260
|
"""
|
|
@@ -299,18 +299,18 @@ class MsTeamsApp(APIApplication):
|
|
|
299
299
|
) -> Any:
|
|
300
300
|
"""
|
|
301
301
|
Retrieves the properties and relationships of a specific chat conversation by its unique ID. Unlike `get_user_chats` which lists all chats, this targets one chat. Optional parameters can select specific fields or expand related entities like members or apps to customize the returned data.
|
|
302
|
-
|
|
302
|
+
|
|
303
303
|
Args:
|
|
304
304
|
chat_id (string): chat-id
|
|
305
305
|
select (array): Select properties to be returned
|
|
306
306
|
expand (array): Expand related entities
|
|
307
|
-
|
|
307
|
+
|
|
308
308
|
Returns:
|
|
309
309
|
Any: Retrieved entity
|
|
310
|
-
|
|
310
|
+
|
|
311
311
|
Raises:
|
|
312
312
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
313
|
-
|
|
313
|
+
|
|
314
314
|
Tags:
|
|
315
315
|
chats.chat
|
|
316
316
|
"""
|
|
@@ -346,7 +346,7 @@ class MsTeamsApp(APIApplication):
|
|
|
346
346
|
) -> Any:
|
|
347
347
|
"""
|
|
348
348
|
Updates properties of a specific chat, such as its topic, using its unique ID. This function performs a partial update (PATCH), distinguishing it from `get_chat_details` which only retrieves data, and `create_chat` which creates an entirely new chat conversation.
|
|
349
|
-
|
|
349
|
+
|
|
350
350
|
Args:
|
|
351
351
|
chat_id (string): chat-id
|
|
352
352
|
id (string): The unique identifier for an entity. Read-only.
|
|
@@ -366,13 +366,13 @@ class MsTeamsApp(APIApplication):
|
|
|
366
366
|
permissionGrants (array): A collection of permissions granted to apps for the chat.
|
|
367
367
|
pinnedMessages (array): A collection of all the pinned messages in the chat. Nullable.
|
|
368
368
|
tabs (array): A collection of all the tabs in the chat. Nullable.
|
|
369
|
-
|
|
369
|
+
|
|
370
370
|
Returns:
|
|
371
371
|
Any: Success
|
|
372
|
-
|
|
372
|
+
|
|
373
373
|
Raises:
|
|
374
374
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
375
|
-
|
|
375
|
+
|
|
376
376
|
Tags:
|
|
377
377
|
chats.chat
|
|
378
378
|
"""
|
|
@@ -420,7 +420,7 @@ class MsTeamsApp(APIApplication):
|
|
|
420
420
|
) -> dict[str, Any]:
|
|
421
421
|
"""
|
|
422
422
|
Retrieves applications installed in a specific chat, identified by `chat_id`. Differentiating from `list_user_installed_apps`, which targets a user's personal scope, this function queries a single conversation. It supports optional parameters for advanced filtering, sorting, and pagination to customize the returned collection.
|
|
423
|
-
|
|
423
|
+
|
|
424
424
|
Args:
|
|
425
425
|
chat_id (string): chat-id
|
|
426
426
|
top (integer): Show only the first n items Example: '50'.
|
|
@@ -431,13 +431,13 @@ class MsTeamsApp(APIApplication):
|
|
|
431
431
|
orderby (array): Order items by property values
|
|
432
432
|
select (array): Select properties to be returned
|
|
433
433
|
expand (array): Expand related entities
|
|
434
|
-
|
|
434
|
+
|
|
435
435
|
Returns:
|
|
436
436
|
dict[str, Any]: Retrieved collection
|
|
437
|
-
|
|
437
|
+
|
|
438
438
|
Raises:
|
|
439
439
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
440
|
-
|
|
440
|
+
|
|
441
441
|
Tags:
|
|
442
442
|
chats.teamsAppInstallation
|
|
443
443
|
"""
|
|
@@ -475,7 +475,7 @@ class MsTeamsApp(APIApplication):
|
|
|
475
475
|
) -> dict[str, Any]:
|
|
476
476
|
"""
|
|
477
477
|
Retrieves a collection of all members in a specific chat using its ID. It supports OData query parameters for pagination, filtering, and sorting. Unlike `get_chat_member`, which fetches a single individual, this function returns the entire collection of members for the specified chat.
|
|
478
|
-
|
|
478
|
+
|
|
479
479
|
Args:
|
|
480
480
|
chat_id (string): chat-id
|
|
481
481
|
top (integer): Show only the first n items Example: '50'.
|
|
@@ -486,13 +486,13 @@ class MsTeamsApp(APIApplication):
|
|
|
486
486
|
orderby (array): Order items by property values
|
|
487
487
|
select (array): Select properties to be returned
|
|
488
488
|
expand (array): Expand related entities
|
|
489
|
-
|
|
489
|
+
|
|
490
490
|
Returns:
|
|
491
491
|
dict[str, Any]: Retrieved collection
|
|
492
|
-
|
|
492
|
+
|
|
493
493
|
Raises:
|
|
494
494
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
495
|
-
|
|
495
|
+
|
|
496
496
|
Tags:
|
|
497
497
|
chats.conversationMember
|
|
498
498
|
"""
|
|
@@ -526,20 +526,20 @@ class MsTeamsApp(APIApplication):
|
|
|
526
526
|
) -> Any:
|
|
527
527
|
"""
|
|
528
528
|
Adds a new member to a specific Microsoft Teams chat using its `chat_id`. This function allows for configuring member roles and chat history visibility. It is the direct counterpart to `delete_chat_member`, performing the 'create' action for a chat's membership.
|
|
529
|
-
|
|
529
|
+
|
|
530
530
|
Args:
|
|
531
531
|
chat_id (string): chat-id
|
|
532
532
|
id (string): The unique identifier for an entity. Read-only.
|
|
533
533
|
displayName (string): The display name of the user.
|
|
534
534
|
roles (array): The roles for that user. This property contains more qualifiers only when relevant - for example, if the member has owner privileges, the roles property contains owner as one of the values. Similarly, if the member is an in-tenant guest, the roles property contains guest as one of the values. A basic member shouldn't have any values specified in the roles property. An Out-of-tenant external member is assigned the owner role.
|
|
535
535
|
visibleHistoryStartDateTime (string): The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat.
|
|
536
|
-
|
|
536
|
+
|
|
537
537
|
Returns:
|
|
538
538
|
Any: Created navigation property.
|
|
539
|
-
|
|
539
|
+
|
|
540
540
|
Raises:
|
|
541
541
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
542
|
-
|
|
542
|
+
|
|
543
543
|
Tags:
|
|
544
544
|
chats.conversationMember
|
|
545
545
|
"""
|
|
@@ -574,19 +574,19 @@ class MsTeamsApp(APIApplication):
|
|
|
574
574
|
) -> Any:
|
|
575
575
|
"""
|
|
576
576
|
Retrieves detailed information for a specific member within a chat using their unique ID. This function targets a single individual, distinguishing it from `list_chat_members` which returns all members. The response can be customized by selecting specific properties or expanding related entities.
|
|
577
|
-
|
|
577
|
+
|
|
578
578
|
Args:
|
|
579
579
|
chat_id (string): chat-id
|
|
580
580
|
conversationMember_id (string): conversationMember-id
|
|
581
581
|
select (array): Select properties to be returned
|
|
582
582
|
expand (array): Expand related entities
|
|
583
|
-
|
|
583
|
+
|
|
584
584
|
Returns:
|
|
585
585
|
Any: Retrieved navigation property
|
|
586
|
-
|
|
586
|
+
|
|
587
587
|
Raises:
|
|
588
588
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
589
|
-
|
|
589
|
+
|
|
590
590
|
Tags:
|
|
591
591
|
chats.conversationMember
|
|
592
592
|
"""
|
|
@@ -604,17 +604,17 @@ class MsTeamsApp(APIApplication):
|
|
|
604
604
|
def delete_chat_member(self, chat_id: str, conversationMember_id: str) -> Any:
|
|
605
605
|
"""
|
|
606
606
|
Removes a specific member from a chat using their unique ID and the chat's ID. This function sends a DELETE request to the Microsoft Graph API to permanently remove the user from the conversation, acting as the counterpart to `add_member_to_chat`.
|
|
607
|
-
|
|
607
|
+
|
|
608
608
|
Args:
|
|
609
609
|
chat_id (string): chat-id
|
|
610
610
|
conversationMember_id (string): conversationMember-id
|
|
611
|
-
|
|
611
|
+
|
|
612
612
|
Returns:
|
|
613
613
|
Any: Success
|
|
614
|
-
|
|
614
|
+
|
|
615
615
|
Raises:
|
|
616
616
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
617
|
-
|
|
617
|
+
|
|
618
618
|
Tags:
|
|
619
619
|
chats.conversationMember
|
|
620
620
|
"""
|
|
@@ -641,7 +641,7 @@ class MsTeamsApp(APIApplication):
|
|
|
641
641
|
) -> dict[str, Any]:
|
|
642
642
|
"""
|
|
643
643
|
Retrieves messages from a specific chat using its ID. Unlike `get_chat_message`, which fetches a single message, this function returns a collection and supports advanced querying for filtering, sorting, and pagination to refine the results.
|
|
644
|
-
|
|
644
|
+
|
|
645
645
|
Args:
|
|
646
646
|
chat_id (string): chat-id
|
|
647
647
|
top (integer): Show only the first n items Example: '50'.
|
|
@@ -652,13 +652,13 @@ class MsTeamsApp(APIApplication):
|
|
|
652
652
|
orderby (array): Order items by property values
|
|
653
653
|
select (array): Select properties to be returned
|
|
654
654
|
expand (array): Expand related entities
|
|
655
|
-
|
|
655
|
+
|
|
656
656
|
Returns:
|
|
657
657
|
dict[str, Any]: Retrieved collection
|
|
658
|
-
|
|
658
|
+
|
|
659
659
|
Raises:
|
|
660
660
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
661
|
-
|
|
661
|
+
|
|
662
662
|
Tags:
|
|
663
663
|
chats.chatMessage
|
|
664
664
|
"""
|
|
@@ -691,19 +691,19 @@ class MsTeamsApp(APIApplication):
|
|
|
691
691
|
) -> Any:
|
|
692
692
|
"""
|
|
693
693
|
Retrieves the full details of a single message from a specific chat using both chat and message IDs. This function targets an individual message, differentiating it from `list_chat_messages`, which retrieves a collection. Optional parameters can customize the response by selecting specific properties or expanding entities.
|
|
694
|
-
|
|
694
|
+
|
|
695
695
|
Args:
|
|
696
696
|
chat_id (string): chat-id
|
|
697
697
|
chatMessage_id (string): chatMessage-id
|
|
698
698
|
select (array): Select properties to be returned
|
|
699
699
|
expand (array): Expand related entities
|
|
700
|
-
|
|
700
|
+
|
|
701
701
|
Returns:
|
|
702
702
|
Any: Retrieved navigation property
|
|
703
|
-
|
|
703
|
+
|
|
704
704
|
Raises:
|
|
705
705
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
706
|
-
|
|
706
|
+
|
|
707
707
|
Tags:
|
|
708
708
|
chats.chatMessage
|
|
709
709
|
"""
|
|
@@ -733,7 +733,7 @@ class MsTeamsApp(APIApplication):
|
|
|
733
733
|
) -> dict[str, Any]:
|
|
734
734
|
"""
|
|
735
735
|
Retrieves all replies for a specific message within a chat, using the parent message's ID. This function, unlike `get_chat_reply_details`, returns a collection and supports OData query parameters for advanced filtering, sorting, and pagination of the results.
|
|
736
|
-
|
|
736
|
+
|
|
737
737
|
Args:
|
|
738
738
|
chat_id (string): chat-id
|
|
739
739
|
chatMessage_id (string): chatMessage-id
|
|
@@ -745,13 +745,13 @@ class MsTeamsApp(APIApplication):
|
|
|
745
745
|
orderby (array): Order items by property values
|
|
746
746
|
select (array): Select properties to be returned
|
|
747
747
|
expand (array): Expand related entities
|
|
748
|
-
|
|
748
|
+
|
|
749
749
|
Returns:
|
|
750
750
|
dict[str, Any]: Retrieved collection
|
|
751
|
-
|
|
751
|
+
|
|
752
752
|
Raises:
|
|
753
753
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
754
|
-
|
|
754
|
+
|
|
755
755
|
Tags:
|
|
756
756
|
chats.chatMessage
|
|
757
757
|
"""
|
|
@@ -809,7 +809,7 @@ class MsTeamsApp(APIApplication):
|
|
|
809
809
|
) -> Any:
|
|
810
810
|
"""
|
|
811
811
|
Posts a reply to a specific message within a chat. This comprehensive function allows for detailed configuration of the reply's properties, like its body and attachments. It differs from `reply_to_channel_message`, which sends simpler replies to messages within team channels.
|
|
812
|
-
|
|
812
|
+
|
|
813
813
|
Args:
|
|
814
814
|
chat_id (string): chat-id
|
|
815
815
|
chatMessage_id (string): chatMessage-id
|
|
@@ -838,13 +838,13 @@ class MsTeamsApp(APIApplication):
|
|
|
838
838
|
webUrl (string): Read-only. Link to the message in Microsoft Teams.
|
|
839
839
|
hostedContents (array): Content in a message hosted by Microsoft Teams - for example, images or code snippets.
|
|
840
840
|
replies (array): Replies for a specified message. Supports $expand for channel messages.
|
|
841
|
-
|
|
841
|
+
|
|
842
842
|
Returns:
|
|
843
843
|
Any: Created navigation property.
|
|
844
|
-
|
|
844
|
+
|
|
845
845
|
Raises:
|
|
846
846
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
847
|
-
|
|
847
|
+
|
|
848
848
|
Tags:
|
|
849
849
|
chats.chatMessage
|
|
850
850
|
"""
|
|
@@ -903,20 +903,20 @@ class MsTeamsApp(APIApplication):
|
|
|
903
903
|
) -> Any:
|
|
904
904
|
"""
|
|
905
905
|
Retrieves a specific reply from a chat message thread using the chat, parent message, and reply IDs. Unlike `list_chat_message_replies`, which fetches all replies, this function targets a single reply for detailed information, allowing for customized field selection.
|
|
906
|
-
|
|
906
|
+
|
|
907
907
|
Args:
|
|
908
908
|
chat_id (string): chat-id
|
|
909
909
|
chatMessage_id (string): chatMessage-id
|
|
910
910
|
chatMessage_id1 (string): chatMessage-id1
|
|
911
911
|
select (array): Select properties to be returned
|
|
912
912
|
expand (array): Expand related entities
|
|
913
|
-
|
|
913
|
+
|
|
914
914
|
Returns:
|
|
915
915
|
Any: Retrieved navigation property
|
|
916
|
-
|
|
916
|
+
|
|
917
917
|
Raises:
|
|
918
918
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
919
|
-
|
|
919
|
+
|
|
920
920
|
Tags:
|
|
921
921
|
chats.chatMessage
|
|
922
922
|
"""
|
|
@@ -969,7 +969,7 @@ class MsTeamsApp(APIApplication):
|
|
|
969
969
|
) -> Any:
|
|
970
970
|
"""
|
|
971
971
|
Enables Microsoft Teams functionality for a pre-existing Microsoft 365 group using its ID. This 'team-ifies' the group, allowing optional configuration of team properties. It differs from `create_team`, which provisions both a new team and its associated group simultaneously.
|
|
972
|
-
|
|
972
|
+
|
|
973
973
|
Args:
|
|
974
974
|
group_id (string): group-id
|
|
975
975
|
id (string): The unique identifier for an entity. Read-only.
|
|
@@ -1002,13 +1002,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1002
1002
|
schedule (string): schedule
|
|
1003
1003
|
tags (array): The tags associated with the team.
|
|
1004
1004
|
template (string): template
|
|
1005
|
-
|
|
1005
|
+
|
|
1006
1006
|
Returns:
|
|
1007
1007
|
Any: Success
|
|
1008
|
-
|
|
1008
|
+
|
|
1009
1009
|
Raises:
|
|
1010
1010
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1011
|
-
|
|
1011
|
+
|
|
1012
1012
|
Tags:
|
|
1013
1013
|
groups.team
|
|
1014
1014
|
"""
|
|
@@ -1095,7 +1095,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1095
1095
|
) -> Any:
|
|
1096
1096
|
"""
|
|
1097
1097
|
Creates a new Microsoft Team and its associated Microsoft 365 group. This method builds a team from scratch, allowing specification of initial properties like display name, description, and members. It differs from `create_team_from_group`, which enables team functionality for an existing group.
|
|
1098
|
-
|
|
1098
|
+
|
|
1099
1099
|
Args:
|
|
1100
1100
|
id (string): The unique identifier for an entity. Read-only.
|
|
1101
1101
|
classification (string): An optional label. Typically describes the data or business sensitivity of the team. Must match one of a preconfigured set in the tenant's directory.
|
|
@@ -1127,13 +1127,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1127
1127
|
schedule (string): schedule
|
|
1128
1128
|
tags (array): The tags associated with the team.
|
|
1129
1129
|
template (string): template
|
|
1130
|
-
|
|
1130
|
+
|
|
1131
1131
|
Returns:
|
|
1132
1132
|
Any: Created entity
|
|
1133
|
-
|
|
1133
|
+
|
|
1134
1134
|
Raises:
|
|
1135
1135
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1136
|
-
|
|
1136
|
+
|
|
1137
1137
|
Tags:
|
|
1138
1138
|
teams.team
|
|
1139
1139
|
"""
|
|
@@ -1192,19 +1192,19 @@ class MsTeamsApp(APIApplication):
|
|
|
1192
1192
|
) -> Any:
|
|
1193
1193
|
"""
|
|
1194
1194
|
Retrieves detailed information for a specific channel within a Microsoft Teams team, identified by both team and channel IDs. Optional parameters can select specific properties or expand related entities in the response, distinguishing it from list_channels_for_team, which retrieves a collection of channels.
|
|
1195
|
-
|
|
1195
|
+
|
|
1196
1196
|
Args:
|
|
1197
1197
|
team_id (string): team-id
|
|
1198
1198
|
channel_id (string): channel-id
|
|
1199
1199
|
select (array): Select properties to be returned
|
|
1200
1200
|
expand (array): Expand related entities
|
|
1201
|
-
|
|
1201
|
+
|
|
1202
1202
|
Returns:
|
|
1203
1203
|
Any: Retrieved navigation property
|
|
1204
|
-
|
|
1204
|
+
|
|
1205
1205
|
Raises:
|
|
1206
1206
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1207
|
-
|
|
1207
|
+
|
|
1208
1208
|
Tags:
|
|
1209
1209
|
teams.channel
|
|
1210
1210
|
"""
|
|
@@ -1252,7 +1252,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1252
1252
|
) -> Any:
|
|
1253
1253
|
"""
|
|
1254
1254
|
Updates an existing message within a Microsoft Teams channel, identified by team, channel, and message IDs. This function modifies the original message's properties, like its body, via a PATCH request, distinguishing it from functions that create new messages or update replies.
|
|
1255
|
-
|
|
1255
|
+
|
|
1256
1256
|
Args:
|
|
1257
1257
|
team_id (string): team-id
|
|
1258
1258
|
channel_id (string): channel-id
|
|
@@ -1282,13 +1282,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1282
1282
|
webUrl (string): Read-only. Link to the message in Microsoft Teams.
|
|
1283
1283
|
hostedContents (array): Content in a message hosted by Microsoft Teams - for example, images or code snippets.
|
|
1284
1284
|
replies (array): Replies for a specified message. Supports $expand for channel messages.
|
|
1285
|
-
|
|
1285
|
+
|
|
1286
1286
|
Returns:
|
|
1287
1287
|
Any: Success
|
|
1288
|
-
|
|
1288
|
+
|
|
1289
1289
|
Raises:
|
|
1290
1290
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1291
|
-
|
|
1291
|
+
|
|
1292
1292
|
Tags:
|
|
1293
1293
|
teams.channel
|
|
1294
1294
|
"""
|
|
@@ -1368,7 +1368,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1368
1368
|
) -> Any:
|
|
1369
1369
|
"""
|
|
1370
1370
|
Updates an existing reply to a specific message within a Microsoft Teams channel. It identifies the target reply using team, channel, parent message, and reply IDs, modifying its properties (e.g., body content, attachments) via a PATCH request.
|
|
1371
|
-
|
|
1371
|
+
|
|
1372
1372
|
Args:
|
|
1373
1373
|
team_id (string): team-id
|
|
1374
1374
|
channel_id (string): channel-id
|
|
@@ -1399,13 +1399,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1399
1399
|
webUrl (string): Read-only. Link to the message in Microsoft Teams.
|
|
1400
1400
|
hostedContents (array): Content in a message hosted by Microsoft Teams - for example, images or code snippets.
|
|
1401
1401
|
replies (array): Replies for a specified message. Supports $expand for channel messages.
|
|
1402
|
-
|
|
1402
|
+
|
|
1403
1403
|
Returns:
|
|
1404
1404
|
Any: Success
|
|
1405
|
-
|
|
1405
|
+
|
|
1406
1406
|
Raises:
|
|
1407
1407
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1408
|
-
|
|
1408
|
+
|
|
1409
1409
|
Tags:
|
|
1410
1410
|
teams.channel
|
|
1411
1411
|
"""
|
|
@@ -1468,7 +1468,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1468
1468
|
) -> dict[str, Any]:
|
|
1469
1469
|
"""
|
|
1470
1470
|
Retrieves a collection of tabs from a specified channel within a Microsoft Teams team. Unlike `get_channel_tab_details`, which fetches a single tab, this function lists all tabs and supports advanced OData query parameters for filtering, sorting, and pagination of the entire collection.
|
|
1471
|
-
|
|
1471
|
+
|
|
1472
1472
|
Args:
|
|
1473
1473
|
team_id (string): team-id
|
|
1474
1474
|
channel_id (string): channel-id
|
|
@@ -1480,13 +1480,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1480
1480
|
orderby (array): Order items by property values
|
|
1481
1481
|
select (array): Select properties to be returned
|
|
1482
1482
|
expand (array): Expand related entities
|
|
1483
|
-
|
|
1483
|
+
|
|
1484
1484
|
Returns:
|
|
1485
1485
|
dict[str, Any]: Retrieved collection
|
|
1486
|
-
|
|
1486
|
+
|
|
1487
1487
|
Raises:
|
|
1488
1488
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1489
|
-
|
|
1489
|
+
|
|
1490
1490
|
Tags:
|
|
1491
1491
|
teams.channel
|
|
1492
1492
|
"""
|
|
@@ -1524,7 +1524,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1524
1524
|
) -> Any:
|
|
1525
1525
|
"""
|
|
1526
1526
|
Creates a new tab in a specified Microsoft Teams channel using team and channel IDs. This function configures the tab's initial properties, such as display name and application, distinguishing it from functions that list (`list_channel_tabs`) or modify (`update_channel_tab`) existing tabs.
|
|
1527
|
-
|
|
1527
|
+
|
|
1528
1528
|
Args:
|
|
1529
1529
|
team_id (string): team-id
|
|
1530
1530
|
channel_id (string): channel-id
|
|
@@ -1533,13 +1533,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1533
1533
|
displayName (string): Name of the tab.
|
|
1534
1534
|
webUrl (string): Deep link URL of the tab instance. Read only.
|
|
1535
1535
|
teamsApp (string): teamsApp
|
|
1536
|
-
|
|
1536
|
+
|
|
1537
1537
|
Returns:
|
|
1538
1538
|
Any: Created navigation property.
|
|
1539
|
-
|
|
1539
|
+
|
|
1540
1540
|
Raises:
|
|
1541
1541
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1542
|
-
|
|
1542
|
+
|
|
1543
1543
|
Tags:
|
|
1544
1544
|
teams.channel
|
|
1545
1545
|
"""
|
|
@@ -1578,20 +1578,20 @@ class MsTeamsApp(APIApplication):
|
|
|
1578
1578
|
) -> Any:
|
|
1579
1579
|
"""
|
|
1580
1580
|
Fetches properties for a single tab within a specific Microsoft Teams channel, identified by its team, channel, and tab IDs. Unlike `list_channel_tabs` which gets all tabs, this targets a specific one, with options to select fields or expand related entities in the response.
|
|
1581
|
-
|
|
1581
|
+
|
|
1582
1582
|
Args:
|
|
1583
1583
|
team_id (string): team-id
|
|
1584
1584
|
channel_id (string): channel-id
|
|
1585
1585
|
teamsTab_id (string): teamsTab-id
|
|
1586
1586
|
select (array): Select properties to be returned
|
|
1587
1587
|
expand (array): Expand related entities
|
|
1588
|
-
|
|
1588
|
+
|
|
1589
1589
|
Returns:
|
|
1590
1590
|
Any: Retrieved navigation property
|
|
1591
|
-
|
|
1591
|
+
|
|
1592
1592
|
Raises:
|
|
1593
1593
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1594
|
-
|
|
1594
|
+
|
|
1595
1595
|
Tags:
|
|
1596
1596
|
teams.channel
|
|
1597
1597
|
"""
|
|
@@ -1623,7 +1623,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1623
1623
|
) -> Any:
|
|
1624
1624
|
"""
|
|
1625
1625
|
Modifies properties of an existing tab within a specific Microsoft Teams channel. It uses the team, channel, and tab IDs to target the tab, allowing for partial updates to its configuration or display name via a PATCH request, differentiating it from tab creation or deletion functions.
|
|
1626
|
-
|
|
1626
|
+
|
|
1627
1627
|
Args:
|
|
1628
1628
|
team_id (string): team-id
|
|
1629
1629
|
channel_id (string): channel-id
|
|
@@ -1633,13 +1633,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1633
1633
|
displayName (string): Name of the tab.
|
|
1634
1634
|
webUrl (string): Deep link URL of the tab instance. Read only.
|
|
1635
1635
|
teamsApp (string): teamsApp
|
|
1636
|
-
|
|
1636
|
+
|
|
1637
1637
|
Returns:
|
|
1638
1638
|
Any: Success
|
|
1639
|
-
|
|
1639
|
+
|
|
1640
1640
|
Raises:
|
|
1641
1641
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1642
|
-
|
|
1642
|
+
|
|
1643
1643
|
Tags:
|
|
1644
1644
|
teams.channel
|
|
1645
1645
|
"""
|
|
@@ -1672,18 +1672,18 @@ class MsTeamsApp(APIApplication):
|
|
|
1672
1672
|
) -> Any:
|
|
1673
1673
|
"""
|
|
1674
1674
|
Permanently removes a specific tab from a Microsoft Teams channel using its unique ID, along with the parent team and channel IDs. This function is the destructive counterpart to `create_channel_tab`, designed to delete a tab rather than create, list, or update one.
|
|
1675
|
-
|
|
1675
|
+
|
|
1676
1676
|
Args:
|
|
1677
1677
|
team_id (string): team-id
|
|
1678
1678
|
channel_id (string): channel-id
|
|
1679
1679
|
teamsTab_id (string): teamsTab-id
|
|
1680
|
-
|
|
1680
|
+
|
|
1681
1681
|
Returns:
|
|
1682
1682
|
Any: Success
|
|
1683
|
-
|
|
1683
|
+
|
|
1684
1684
|
Raises:
|
|
1685
1685
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1686
|
-
|
|
1686
|
+
|
|
1687
1687
|
Tags:
|
|
1688
1688
|
teams.channel
|
|
1689
1689
|
"""
|
|
@@ -1708,18 +1708,18 @@ class MsTeamsApp(APIApplication):
|
|
|
1708
1708
|
) -> Any:
|
|
1709
1709
|
"""
|
|
1710
1710
|
Retrieves the primary channel (usually 'General') for a specified team using its ID. Unlike `get_channel_details`, this function directly accesses the team's default channel without requiring a specific channel ID. Optional parameters can select or expand properties in the returned data.
|
|
1711
|
-
|
|
1711
|
+
|
|
1712
1712
|
Args:
|
|
1713
1713
|
team_id (string): team-id
|
|
1714
1714
|
select (array): Select properties to be returned
|
|
1715
1715
|
expand (array): Expand related entities
|
|
1716
|
-
|
|
1716
|
+
|
|
1717
1717
|
Returns:
|
|
1718
1718
|
Any: Retrieved navigation property
|
|
1719
|
-
|
|
1719
|
+
|
|
1720
1720
|
Raises:
|
|
1721
1721
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1722
|
-
|
|
1722
|
+
|
|
1723
1723
|
Tags:
|
|
1724
1724
|
teams.channel
|
|
1725
1725
|
"""
|
|
@@ -1746,7 +1746,7 @@ class MsTeamsApp(APIApplication):
|
|
|
1746
1746
|
) -> dict[str, Any]:
|
|
1747
1747
|
"""
|
|
1748
1748
|
Retrieves applications installed in a user's personal Microsoft Teams scope, identified by their ID. Unlike `list_installed_chat_apps` which targets chat installations, this focuses on the user's scope. It supports optional OData parameters for filtering, sorting, and pagination to customize the returned app collection.
|
|
1749
|
-
|
|
1749
|
+
|
|
1750
1750
|
Args:
|
|
1751
1751
|
user_id (string): user-id
|
|
1752
1752
|
top (integer): Show only the first n items Example: '50'.
|
|
@@ -1757,13 +1757,13 @@ class MsTeamsApp(APIApplication):
|
|
|
1757
1757
|
orderby (array): Order items by property values
|
|
1758
1758
|
select (array): Select properties to be returned
|
|
1759
1759
|
expand (array): Expand related entities
|
|
1760
|
-
|
|
1760
|
+
|
|
1761
1761
|
Returns:
|
|
1762
1762
|
dict[str, Any]: Retrieved collection
|
|
1763
|
-
|
|
1763
|
+
|
|
1764
1764
|
Raises:
|
|
1765
1765
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
1766
|
-
|
|
1766
|
+
|
|
1767
1767
|
Tags:
|
|
1768
1768
|
users.userTeamwork
|
|
1769
1769
|
"""
|