universal-mcp-applications 0.1.2__py3-none-any.whl → 0.1.4__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/airtable/app.py +1 -0
- universal_mcp/applications/apollo/app.py +1 -0
- universal_mcp/applications/aws_s3/app.py +3 -4
- universal_mcp/applications/bill/app.py +3 -3
- universal_mcp/applications/box/app.py +2 -6
- universal_mcp/applications/braze/app.py +2 -6
- universal_mcp/applications/cal_com_v2/app.py +22 -64
- universal_mcp/applications/confluence/app.py +1 -0
- universal_mcp/applications/contentful/app.py +8 -19
- universal_mcp/applications/digitalocean/app.py +9 -27
- universal_mcp/applications/{domain-checker → domain_checker}/app.py +2 -1
- universal_mcp/applications/elevenlabs/app.py +98 -3188
- universal_mcp/applications/falai/app.py +1 -0
- universal_mcp/applications/file_system/__init__.py +1 -0
- universal_mcp/applications/file_system/app.py +96 -0
- universal_mcp/applications/fireflies/app.py +4 -3
- universal_mcp/applications/fpl/app.py +1 -0
- universal_mcp/applications/fpl/utils/fixtures.py +1 -1
- universal_mcp/applications/fpl/utils/helper.py +1 -1
- universal_mcp/applications/fpl/utils/position_utils.py +0 -1
- universal_mcp/applications/{ghost-content → ghost_content}/app.py +2 -1
- universal_mcp/applications/github/app.py +3 -1
- universal_mcp/applications/google_calendar/app.py +2 -1
- universal_mcp/applications/google_docs/app.py +1 -1
- universal_mcp/applications/google_drive/app.py +3 -68
- universal_mcp/applications/google_gemini/app.py +138 -618
- universal_mcp/applications/google_mail/app.py +2 -1
- universal_mcp/applications/{google-searchconsole → google_searchconsole}/app.py +1 -1
- universal_mcp/applications/google_sheet/app.py +2 -1
- universal_mcp/applications/google_sheet/helper.py +156 -116
- universal_mcp/applications/hashnode/app.py +1 -0
- universal_mcp/applications/{http-tools → http_tools}/app.py +2 -1
- universal_mcp/applications/hubspot/app.py +4 -1
- universal_mcp/applications/jira/app.py +7 -18
- universal_mcp/applications/markitdown/app.py +2 -3
- universal_mcp/applications/ms_teams/app.py +1 -1
- universal_mcp/applications/openai/app.py +2 -3
- universal_mcp/applications/outlook/app.py +1 -3
- universal_mcp/applications/pipedrive/app.py +2 -6
- universal_mcp/applications/reddit/app.py +1 -0
- universal_mcp/applications/replicate/app.py +3 -3
- universal_mcp/applications/resend/app.py +1 -2
- universal_mcp/applications/rocketlane/app.py +1 -0
- universal_mcp/applications/semrush/app.py +1 -1
- universal_mcp/applications/sentry/README.md +20 -20
- universal_mcp/applications/sentry/app.py +40 -40
- universal_mcp/applications/serpapi/app.py +2 -2
- universal_mcp/applications/sharepoint/app.py +1 -0
- universal_mcp/applications/shopify/app.py +1 -0
- universal_mcp/applications/slack/app.py +3 -3
- universal_mcp/applications/trello/app.py +9 -27
- universal_mcp/applications/twilio/__init__.py +1 -0
- universal_mcp/applications/{twillo → twilio}/app.py +2 -2
- universal_mcp/applications/twitter/README.md +1 -1
- universal_mcp/applications/twitter/api_segments/dm_conversations_api.py +2 -2
- universal_mcp/applications/twitter/api_segments/lists_api.py +1 -1
- universal_mcp/applications/unipile/app.py +5 -1
- universal_mcp/applications/whatsapp/app.py +18 -17
- universal_mcp/applications/whatsapp/audio.py +110 -0
- universal_mcp/applications/whatsapp/whatsapp.py +398 -0
- universal_mcp/applications/whatsapp_business/app.py +1 -1
- universal_mcp/applications/youtube/app.py +195 -191
- universal_mcp/applications/zenquotes/app.py +1 -1
- {universal_mcp_applications-0.1.2.dist-info → universal_mcp_applications-0.1.4.dist-info}/METADATA +4 -2
- {universal_mcp_applications-0.1.2.dist-info → universal_mcp_applications-0.1.4.dist-info}/RECORD +76 -75
- universal_mcp/applications/google-ads/__init__.py +0 -1
- universal_mcp/applications/google-ads/app.py +0 -23
- universal_mcp/applications/twillo/README.md +0 -0
- universal_mcp/applications/twillo/__init__.py +0 -1
- /universal_mcp/applications/{domain-checker → domain_checker}/README.md +0 -0
- /universal_mcp/applications/{domain-checker → domain_checker}/__init__.py +0 -0
- /universal_mcp/applications/{ghost-content → ghost_content}/README.md +0 -0
- /universal_mcp/applications/{ghost-content → ghost_content}/__init__.py +0 -0
- /universal_mcp/applications/{google-searchconsole → google_searchconsole}/README.md +0 -0
- /universal_mcp/applications/{google-searchconsole → google_searchconsole}/__init__.py +0 -0
- /universal_mcp/applications/{http-tools → http_tools}/README.md +0 -0
- /universal_mcp/applications/{http-tools → http_tools}/__init__.py +0 -0
- /universal_mcp/applications/{google-ads → twilio}/README.md +0 -0
- {universal_mcp_applications-0.1.2.dist-info → universal_mcp_applications-0.1.4.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.2.dist-info → universal_mcp_applications-0.1.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,7 +6,7 @@ from universal_mcp.integrations import Integration
|
|
|
6
6
|
|
|
7
7
|
class MsTeamsApp(APIApplication):
|
|
8
8
|
def __init__(self, integration: Integration = None, **kwargs) -> None:
|
|
9
|
-
super().__init__(name="
|
|
9
|
+
super().__init__(name="ms_teams", integration=integration, **kwargs)
|
|
10
10
|
self.base_url = "https://graph.microsoft.com/v1.0"
|
|
11
11
|
|
|
12
12
|
def list_chats(
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import base64
|
|
2
2
|
from typing import Any, Literal
|
|
3
3
|
|
|
4
|
-
from universal_mcp.applications.application import APIApplication
|
|
5
|
-
from universal_mcp.integrations import Integration
|
|
6
|
-
|
|
7
4
|
from openai import NOT_GIVEN, AsyncOpenAI, OpenAIError
|
|
8
5
|
from openai._types import FileTypes as OpenAiFileTypes
|
|
9
6
|
from openai.types import FilePurpose as OpenAiFilePurpose
|
|
@@ -18,6 +15,8 @@ from openai.types.audio_model import AudioModel as OpenAiAudioModel
|
|
|
18
15
|
from openai.types.chat import ChatCompletionMessageParam
|
|
19
16
|
from openai.types.file_object import FileObject
|
|
20
17
|
from openai.types.image_model import ImageModel as OpenAiImageModel
|
|
18
|
+
from universal_mcp.applications.application import APIApplication
|
|
19
|
+
from universal_mcp.integrations import Integration
|
|
21
20
|
|
|
22
21
|
|
|
23
22
|
class OpenaiApp(APIApplication):
|
|
@@ -291,9 +291,7 @@ class OutlookApp(APIApplication):
|
|
|
291
291
|
response = self._get(url, params=query_params)
|
|
292
292
|
return self._handle_response(response)
|
|
293
293
|
|
|
294
|
-
def user_delete_message(
|
|
295
|
-
self, message_id: str, user_id: str | None = None
|
|
296
|
-
) -> Any:
|
|
294
|
+
def user_delete_message(self, message_id: str, user_id: str | None = None) -> Any:
|
|
297
295
|
"""
|
|
298
296
|
Deletes a specific message for a given user using the DELETE method and optional If-Match header for conditional requests.
|
|
299
297
|
|
|
@@ -1239,9 +1239,7 @@ class PipedriveApp(APIApplication):
|
|
|
1239
1239
|
except ValueError:
|
|
1240
1240
|
return None
|
|
1241
1241
|
|
|
1242
|
-
def currencies_get_all_supported(
|
|
1243
|
-
self, term: str | None = None
|
|
1244
|
-
) -> dict[str, Any]:
|
|
1242
|
+
def currencies_get_all_supported(self, term: str | None = None) -> dict[str, Any]:
|
|
1245
1243
|
"""
|
|
1246
1244
|
Retrieves a list of currencies based on a search term using the "GET" method at the "/currencies" path.
|
|
1247
1245
|
|
|
@@ -2140,9 +2138,7 @@ class PipedriveApp(APIApplication):
|
|
|
2140
2138
|
except ValueError:
|
|
2141
2139
|
return None
|
|
2142
2140
|
|
|
2143
|
-
def deals_add_follower(
|
|
2144
|
-
self, id: str, user_id: int | None = None
|
|
2145
|
-
) -> dict[str, Any]:
|
|
2141
|
+
def deals_add_follower(self, id: str, user_id: int | None = None) -> dict[str, Any]:
|
|
2146
2142
|
"""
|
|
2147
2143
|
Adds followers to a specified deal and returns a success status.
|
|
2148
2144
|
|
|
@@ -3,14 +3,14 @@ from pathlib import Path
|
|
|
3
3
|
from typing import Any
|
|
4
4
|
|
|
5
5
|
from loguru import logger
|
|
6
|
-
from universal_mcp.applications.application import APIApplication
|
|
7
|
-
from universal_mcp.exceptions import NotAuthorizedError, ToolError
|
|
8
|
-
from universal_mcp.integrations import Integration
|
|
9
6
|
|
|
10
7
|
import replicate
|
|
11
8
|
from replicate.exceptions import ModelError as ReplicateModelError
|
|
12
9
|
from replicate.exceptions import ReplicateError as ReplicateAPIError
|
|
13
10
|
from replicate.prediction import Prediction
|
|
11
|
+
from universal_mcp.applications.application import APIApplication
|
|
12
|
+
from universal_mcp.exceptions import NotAuthorizedError, ToolError
|
|
13
|
+
from universal_mcp.integrations import Integration
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class ReplicateApp(APIApplication):
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
from typing import Any
|
|
2
2
|
|
|
3
|
+
import resend
|
|
3
4
|
from universal_mcp.applications.application import APIApplication
|
|
4
5
|
from universal_mcp.exceptions import NotAuthorizedError, ToolError
|
|
5
6
|
from universal_mcp.integrations import Integration
|
|
6
7
|
|
|
7
|
-
import resend
|
|
8
|
-
|
|
9
8
|
|
|
10
9
|
class ResendApp(APIApplication):
|
|
11
10
|
def __init__(self, integration: Integration, **kwargs: Any) -> None:
|
|
@@ -13,11 +13,11 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
13
13
|
| `retrieve_an_organization` | Retrieves detailed information about a specified organization by its ID or slug, optionally including extended details, requiring appropriate organizational permissions. |
|
|
14
14
|
| `update_an_organization` | Updates an existing organization using the provided JSON data, replacing its current details, and requires authentication with permissions to write or administer the organization. |
|
|
15
15
|
| `list_an_organization_s_metric_alert_rules` | Retrieves the list of alert rules associated with the specified organization and requires appropriate read and organization permissions. |
|
|
16
|
-
| `
|
|
17
|
-
| `
|
|
16
|
+
| `create_organization_metric_alert_rule` | Creates a new alert rule for an organization using the provided JSON data and returns a success response upon creation. |
|
|
17
|
+
| `get_organization_metric_alert_rule` | Retrieves an alert rule by its ID within a specified organization using the organization's ID or slug. |
|
|
18
18
|
| `update_a_metric_alert_rule` | Updates an alert rule for a specified organization using the provided JSON payload, requiring authentication with the necessary permissions. |
|
|
19
19
|
| `delete_a_metric_alert_rule` | Deletes the specified alert rule for the given organization using the alert rule identifier, returning a 202 Accepted status if the deletion is initiated. |
|
|
20
|
-
| `
|
|
20
|
+
| `get_metric_alert_rule_activations` | Retrieves a list of activations for a specific alert rule within an organization. |
|
|
21
21
|
| `get_integration_provider_information` | Retrieves the list of configured integrations for a specified organization, optionally filtered by provider key, and returns integration details if found. |
|
|
22
22
|
| `list_an_organization_s_custom_dashboards` | Retrieves a list of dashboards for a specified organization using pagination parameters. |
|
|
23
23
|
| `create_a_new_dashboard_for_an_organization` | Creates a new dashboard for the specified organization using provided JSON data, requiring appropriate organization-level authentication. |
|
|
@@ -27,16 +27,16 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
27
27
|
| `list_an_organization_s_discover_saved_queries` | Retrieves a list of saved discoveries for an organization, allowing filtering by query, sorting, and pagination. |
|
|
28
28
|
| `create_a_new_saved_query` | Saves a discovery configuration for a specified organization using the provided JSON data and returns a success status upon completion. |
|
|
29
29
|
| `retrieve_an_organization_s_discover_saved_query` | Retrieves saved discovery data for a specified query within an organization using the provided organization ID or slug and query ID. |
|
|
30
|
-
| `
|
|
31
|
-
| `
|
|
30
|
+
| `edit_organization_discover_saved_query` | Updates or replaces a saved Discover query for the specified organization using the provided query details. |
|
|
31
|
+
| `delete_organization_discover_saved_query` | Deletes a saved query for a specified organization and query ID, returning a 204 (No Content) on success. |
|
|
32
32
|
| `list_an_organization_s_environments` | Lists all environments for a specified organization, optionally filtered by visibility, when authenticated with sufficient permissions. |
|
|
33
33
|
| `query_discover_events_in_table_format` | Retrieves a list of events for a specified organization, allowing filtering and sorting by various query parameters such as fields, environment, project, time range, and pagination. |
|
|
34
34
|
| `create_an_external_user` | Links a user from an external provider to a Sentry user within the specified organization and returns the external user resource. |
|
|
35
35
|
| `update_an_external_user` | Updates the details of a specified external user within an organization using the provided request body. |
|
|
36
36
|
| `delete_an_external_user` | Removes an external user from an organization using the organization ID or slug and the external user ID. |
|
|
37
|
-
| `
|
|
38
|
-
| `
|
|
39
|
-
| `
|
|
37
|
+
| `list_organization_available_integrations` | Retrieves a list of integrations for a specified organization using the provided organization ID or slug, allowing optional filtering by provider key, features, and configuration inclusion. |
|
|
38
|
+
| `get_organization_integration` | Retrieves details for a specific integration within an organization using its ID or slug. |
|
|
39
|
+
| `delete_organization_integration` | Deletes an integration from an organization using the provided organization ID or slug and integration ID, returning a 204 status code upon successful deletion. |
|
|
40
40
|
| `list_an_organization_s_members` | Retrieves a list of members belonging to a specified organization, with access controlled by member-specific permissions. |
|
|
41
41
|
| `add_a_member_to_an_organization` | Invites a new member to the specified organization by creating their membership with the provided details. |
|
|
42
42
|
| `retrieve_an_organization_member` | Retrieves information about a specific member in an organization using the provided organization ID or slug and member ID. |
|
|
@@ -52,13 +52,13 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
52
52
|
| `delete_a_monitor_or_monitor_environments` | Deletes a monitor from a specified organization in an API, identified by organization ID or slug and monitor ID or slug, with optional environment parameters. |
|
|
53
53
|
| `retrieve_check_ins_for_a_monitor` | Retrieves check-ins for a specific monitor within an organization using the provided organization ID or slug and monitor ID or slug. |
|
|
54
54
|
| `list_spike_protection_notifications` | Retrieves a list of notification actions available for the specified organization, optionally filtered by project or trigger type. |
|
|
55
|
-
| `
|
|
55
|
+
| `create_spike_protection_notification` | Performs an action on notifications for a specified organization using the provided JSON body and returns a success status. |
|
|
56
56
|
| `retrieve_a_spike_protection_notification_action` | Retrieves information about a specific notification action for an organization using the provided organization identifier or slug and action ID. |
|
|
57
57
|
| `update_a_spike_protection_notification_action` | Updates a notification action for a specific organization using the provided JSON data and returns a success status upon completion. |
|
|
58
58
|
| `delete_a_spike_protection_notification_action` | Deletes a notification action by its ID for a specific organization identified by its ID or slug, using the provided authentication token with appropriate permissions. |
|
|
59
59
|
| `list_an_organization_s_projects` | Retrieves a paginated list of projects within the specified organization identified by its ID or slug. |
|
|
60
60
|
| `list_an_organization_s_trusted_relays` | Retrieves relay usage information for a specified organization using its ID or slug, requiring appropriate authentication tokens for administrative or read access. |
|
|
61
|
-
| `
|
|
61
|
+
| `get_release_threshold_statuses` | Retrieves the current statuses of release thresholds for a specified organization within a given time range, optionally filtered by environment, project, or release. |
|
|
62
62
|
| `retrieve_an_organization_s_release` | Retrieves detailed information about a specific release version within an organization, optionally filtered and sorted by project, health metrics, adoption stages, summary statistics, and status. |
|
|
63
63
|
| `update_an_organization_s_release` | Updates a specific release version within an organization using the provided JSON data and returns a status message. |
|
|
64
64
|
| `delete_an_organization_s_release` | Deletes a release version associated with an organization in the API, identified by the organization ID or slug and the version number, and returns a successful deletion status with a 204 response code. |
|
|
@@ -77,8 +77,8 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
77
77
|
| `update_an_organization_member_s_attributes` | Updates specific attributes of a SCIM user within an organization using a PATCH request. |
|
|
78
78
|
| `delete_an_organization_member_via_scim` | Deletes an organization member by ID using the SCIM API, requiring a valid admin token for authentication. |
|
|
79
79
|
| `retrieve_release_health_session_statistics` | Retrieves sessions for a specified organization using the provided filters and parameters, such as fields, date range, environment, and statistics period. |
|
|
80
|
-
| `
|
|
81
|
-
| `
|
|
80
|
+
| `get_organization_events_count_by_project` | Retrieves a summary of statistics for an organization specified by its ID or slug, allowing for filtering by field, time period, and other criteria, and optionally returns the data in a downloadable format. |
|
|
81
|
+
| `get_organization_event_counts_v2` | Retrieves statistical data for an organization using the `GET` method, allowing filtering by group, field, and time period. |
|
|
82
82
|
| `list_an_organization_s_teams` | Retrieves a list of teams associated with the specified organization, optionally with detailed information and pagination support. |
|
|
83
83
|
| `create_a_new_team` | Creates a team within a specified organization using the provided JSON data and returns a status message upon successful creation. |
|
|
84
84
|
| `list_a_user_s_teams_for_an_organization` | Retrieves a list of user teams associated with the specified organization. |
|
|
@@ -89,7 +89,7 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
89
89
|
| `retrieve_a_project_environment` | Retrieves details for a specific environment within a project using the organization ID or slug, project ID or slug, and environment name. |
|
|
90
90
|
| `update_a_project_environment` | Updates the environment settings for a specific project using the provided JSON data and returns a status message. |
|
|
91
91
|
| `list_a_project_s_error_events` | Retrieves a list of events for a specific project in an organization using the provided identifiers and optional query parameters for pagination and data filtering. |
|
|
92
|
-
| `
|
|
92
|
+
| `debug_event_source_maps` | Retrieves source map debug information for a specific event within a project, using the `GET` method and requiring an organization ID or slug, project ID or slug, event ID, frame index, and exception index. |
|
|
93
93
|
| `list_a_project_s_data_filters` | Retrieves a list of filters for a project in a specified organization using the provided organization ID or slug and project ID or slug. |
|
|
94
94
|
| `update_an_inbound_data_filter` | Updates a filter in a project using the organization ID or slug, project ID or slug, and filter ID, with the new filter details provided in the JSON body, requiring appropriate authentication for project administration or writing permissions. |
|
|
95
95
|
| `list_a_project_s_client_keys` | Retrieves a list of keys for a project, allowing optional filtering by status and pagination with a cursor. |
|
|
@@ -100,10 +100,10 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
100
100
|
| `list_a_project_s_organization_members` | Retrieves a list of members for a specific project within an organization using the provided organization ID or slug and project ID or slug. |
|
|
101
101
|
| `retrieve_a_monitor_for_a_project` | Retrieves details for a specific monitor within a project and organization using their respective IDs or slugs. |
|
|
102
102
|
| `update_a_monitor_for_a_project` | Updates a monitor in a project using the organization and project identifiers. |
|
|
103
|
-
| `
|
|
103
|
+
| `delete_project_monitor_or_environments` | Deletes a specific monitor from a project in an organization and returns an HTTP status indicating the outcome. |
|
|
104
104
|
| `retrieve_check_ins_for_a_monitor_by_project` | Retrieves checkin data for a specific monitor in a project, identified by the organization ID or slug, project ID or slug, and monitor ID or slug. |
|
|
105
|
-
| `
|
|
106
|
-
| `
|
|
105
|
+
| `get_project_ownership_config` | Retrieves project ownership details for a specific project within an organization using the provided organization ID or slug and project ID or slug. |
|
|
106
|
+
| `update_project_ownership_config` | Updates the ownership configuration for a specific project, allowing modification of ownership rules, fallthrough assignment, auto-assignment settings, and CODEOWNERS synchronization[1]. |
|
|
107
107
|
| `delete_a_replay_instance` | Deletes a specified replay associated with a project and organization using its unique identifier. |
|
|
108
108
|
| `list_clicked_nodes` | Retrieves a list of user click events recorded during a specific replay session within a project and organization, with optional filtering and pagination. |
|
|
109
109
|
| `list_recording_segments` | Retrieves a paginated list of recording segments for a specified replay within a project and organization. |
|
|
@@ -140,8 +140,8 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
140
140
|
| `list_a_repository_s_commits` | Retrieves a list of commits from a specified repository within an organization, requiring read access for authentication. |
|
|
141
141
|
| `resolve_a_short_id` | Retrieves information for a specific short ID within an organization using the provided organization ID or slug. |
|
|
142
142
|
| `list_your_projects` | Get a list of projects accessible to the user, optionally paginated using a cursor. |
|
|
143
|
-
| `
|
|
144
|
-
| `
|
|
143
|
+
| `list_project_debug_files` | Retrieves a list of dSYM files for a specific project within an organization using the provided organization ID or slug and project ID or slug. |
|
|
144
|
+
| `delete_project_debug_file` | Deletes a dSYM file from a project using its ID, requiring a write authorization token for the project. |
|
|
145
145
|
| `list_a_project_s_users` | Retrieves a list of users associated with a specified project within an organization, optionally filtered by a query parameter. |
|
|
146
146
|
| `list_a_tag_s_values` | Retrieves a list of values for a specific tag key within a project, using the organization ID or slug and project ID or slug. |
|
|
147
147
|
| `retrieve_event_counts_for_a_project` | Retrieves statistics for a specific project within an organization, optionally filtered by stat type, time range, and resolution. |
|
|
@@ -153,7 +153,7 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
153
153
|
| `update_a_service_hook` | Updates a specific hook in a project using the provided JSON payload and returns a success response upon completion. |
|
|
154
154
|
| `remove_a_service_hook` | Deletes a webhook hook identified by the specified hook ID within a project, requiring administrative privileges for the project. |
|
|
155
155
|
| `retrieve_an_event_for_a_project` | Retrieves details for a specific event within a project using the organization ID or slug and project ID or slug. |
|
|
156
|
-
| `
|
|
156
|
+
| `list_project_issues` | Get a list of issues for a specified project within an organization, with optional filters for query, stats period, short ID lookup, hashes, and pagination. |
|
|
157
157
|
| `bulk_mutate_a_list_of_issues` | Updates an issue in a specific project within an organization using the provided JSON body and returns a status code indicating the outcome of the update. |
|
|
158
158
|
| `bulk_remove_a_list_of_issues` | Deletes issues from a project by organization or project identifier using the "DELETE" method, requiring authentication as an event administrator. |
|
|
159
159
|
| `list_a_tag_s_values_related_to_an_issue` | Retrieves the available values for a specific tag key associated with an issue within the specified organization. |
|
|
@@ -176,7 +176,7 @@ This is automatically generated from OpenAPI schema for the SentryApp API.
|
|
|
176
176
|
| `retrieve_files_changed_in_a_release_s_commits` | Retrieves a list of commit files for a specific release version within an organization, identified by its ID or slug. |
|
|
177
177
|
| `list_a_release_s_deploys` | Retrieves deployment information for a specific release version within an organization. |
|
|
178
178
|
| `create_a_new_deploy_for_an_organization` | Records a new deployment of a specific release version for an organization identified by its ID or slug and returns status codes indicating success, conflict, or error. |
|
|
179
|
-
| `
|
|
179
|
+
| `list_organization_integration_installations` | Retrieves a list of Sentry app installations for a specified organization using the organization ID or slug. |
|
|
180
180
|
| `create_or_update_an_external_issue` | Creates or updates an external issue linked to a Sentry issue using the integration platform integration specified by the `uuid` path parameter, requiring authentication with a token having the `event:write` scope. |
|
|
181
181
|
| `delete_an_external_issue` | Deletes an external issue associated with a specific integration installation in Sentry, requiring authentication with the `event:admin` scope. |
|
|
182
182
|
| `enable_spike_protection` | Creates a new spike protection for an organization using the provided JSON data and returns a status message, requiring authentication with permissions to read, write, or administer projects. |
|
|
@@ -263,7 +263,7 @@ class SentryApp(APIApplication):
|
|
|
263
263
|
response.raise_for_status()
|
|
264
264
|
return response.json()
|
|
265
265
|
|
|
266
|
-
def
|
|
266
|
+
def create_organization_metric_alert_rule(
|
|
267
267
|
self,
|
|
268
268
|
organization_id_or_slug,
|
|
269
269
|
name,
|
|
@@ -391,7 +391,7 @@ class SentryApp(APIApplication):
|
|
|
391
391
|
response.raise_for_status()
|
|
392
392
|
return response.json()
|
|
393
393
|
|
|
394
|
-
def
|
|
394
|
+
def get_organization_metric_alert_rule(
|
|
395
395
|
self, organization_id_or_slug, alert_rule_id
|
|
396
396
|
) -> dict[str, Any]:
|
|
397
397
|
"""
|
|
@@ -574,7 +574,7 @@ class SentryApp(APIApplication):
|
|
|
574
574
|
response.raise_for_status()
|
|
575
575
|
return response.json()
|
|
576
576
|
|
|
577
|
-
def
|
|
577
|
+
def get_metric_alert_rule_activations(
|
|
578
578
|
self, organization_id_or_slug, alert_rule_id
|
|
579
579
|
) -> list[Any]:
|
|
580
580
|
"""
|
|
@@ -995,7 +995,7 @@ class SentryApp(APIApplication):
|
|
|
995
995
|
response.raise_for_status()
|
|
996
996
|
return response.json()
|
|
997
997
|
|
|
998
|
-
def
|
|
998
|
+
def edit_organization_discover_saved_query(
|
|
999
999
|
self,
|
|
1000
1000
|
organization_id_or_slug,
|
|
1001
1001
|
query_id,
|
|
@@ -1092,7 +1092,7 @@ class SentryApp(APIApplication):
|
|
|
1092
1092
|
response.raise_for_status()
|
|
1093
1093
|
return response.json()
|
|
1094
1094
|
|
|
1095
|
-
def
|
|
1095
|
+
def delete_organization_discover_saved_query(
|
|
1096
1096
|
self, organization_id_or_slug, query_id
|
|
1097
1097
|
) -> Any:
|
|
1098
1098
|
"""
|
|
@@ -1330,7 +1330,7 @@ class SentryApp(APIApplication):
|
|
|
1330
1330
|
response.raise_for_status()
|
|
1331
1331
|
return response.json()
|
|
1332
1332
|
|
|
1333
|
-
def
|
|
1333
|
+
def list_organization_available_integrations(
|
|
1334
1334
|
self,
|
|
1335
1335
|
organization_id_or_slug,
|
|
1336
1336
|
providerKey=None,
|
|
@@ -1368,7 +1368,7 @@ class SentryApp(APIApplication):
|
|
|
1368
1368
|
response.raise_for_status()
|
|
1369
1369
|
return response.json()
|
|
1370
1370
|
|
|
1371
|
-
def
|
|
1371
|
+
def get_organization_integration(
|
|
1372
1372
|
self, organization_id_or_slug, integration_id
|
|
1373
1373
|
) -> dict[str, Any]:
|
|
1374
1374
|
"""
|
|
@@ -1394,7 +1394,7 @@ class SentryApp(APIApplication):
|
|
|
1394
1394
|
response.raise_for_status()
|
|
1395
1395
|
return response.json()
|
|
1396
1396
|
|
|
1397
|
-
def
|
|
1397
|
+
def delete_organization_integration(
|
|
1398
1398
|
self, organization_id_or_slug, integration_id
|
|
1399
1399
|
) -> Any:
|
|
1400
1400
|
"""
|
|
@@ -1961,7 +1961,7 @@ class SentryApp(APIApplication):
|
|
|
1961
1961
|
response.raise_for_status()
|
|
1962
1962
|
return response.json()
|
|
1963
1963
|
|
|
1964
|
-
def
|
|
1964
|
+
def create_spike_protection_notification(
|
|
1965
1965
|
self,
|
|
1966
1966
|
organization_id_or_slug,
|
|
1967
1967
|
trigger_type,
|
|
@@ -2188,7 +2188,7 @@ class SentryApp(APIApplication):
|
|
|
2188
2188
|
response.raise_for_status()
|
|
2189
2189
|
return response.json()
|
|
2190
2190
|
|
|
2191
|
-
def
|
|
2191
|
+
def get_release_threshold_statuses(
|
|
2192
2192
|
self,
|
|
2193
2193
|
organization_id_or_slug,
|
|
2194
2194
|
start,
|
|
@@ -3033,7 +3033,7 @@ class SentryApp(APIApplication):
|
|
|
3033
3033
|
response.raise_for_status()
|
|
3034
3034
|
return response.json()
|
|
3035
3035
|
|
|
3036
|
-
def
|
|
3036
|
+
def get_organization_events_count_by_project(
|
|
3037
3037
|
self,
|
|
3038
3038
|
organization_id_or_slug,
|
|
3039
3039
|
field,
|
|
@@ -3092,7 +3092,7 @@ class SentryApp(APIApplication):
|
|
|
3092
3092
|
response.raise_for_status()
|
|
3093
3093
|
return response.json()
|
|
3094
3094
|
|
|
3095
|
-
def
|
|
3095
|
+
def get_organization_event_counts_v2(
|
|
3096
3096
|
self,
|
|
3097
3097
|
organization_id_or_slug,
|
|
3098
3098
|
groupBy,
|
|
@@ -3480,7 +3480,7 @@ class SentryApp(APIApplication):
|
|
|
3480
3480
|
response.raise_for_status()
|
|
3481
3481
|
return response.json()
|
|
3482
3482
|
|
|
3483
|
-
def
|
|
3483
|
+
def debug_event_source_maps(
|
|
3484
3484
|
self,
|
|
3485
3485
|
organization_id_or_slug,
|
|
3486
3486
|
project_id_or_slug,
|
|
@@ -3924,7 +3924,7 @@ class SentryApp(APIApplication):
|
|
|
3924
3924
|
response.raise_for_status()
|
|
3925
3925
|
return response.json()
|
|
3926
3926
|
|
|
3927
|
-
def
|
|
3927
|
+
def delete_project_monitor_or_environments(
|
|
3928
3928
|
self,
|
|
3929
3929
|
organization_id_or_slug,
|
|
3930
3930
|
project_id_or_slug,
|
|
@@ -3989,7 +3989,7 @@ class SentryApp(APIApplication):
|
|
|
3989
3989
|
response.raise_for_status()
|
|
3990
3990
|
return response.json()
|
|
3991
3991
|
|
|
3992
|
-
def
|
|
3992
|
+
def get_project_ownership_config(
|
|
3993
3993
|
self, organization_id_or_slug, project_id_or_slug
|
|
3994
3994
|
) -> dict[str, Any]:
|
|
3995
3995
|
"""
|
|
@@ -4015,7 +4015,7 @@ class SentryApp(APIApplication):
|
|
|
4015
4015
|
response.raise_for_status()
|
|
4016
4016
|
return response.json()
|
|
4017
4017
|
|
|
4018
|
-
def
|
|
4018
|
+
def update_project_ownership_config(
|
|
4019
4019
|
self,
|
|
4020
4020
|
organization_id_or_slug,
|
|
4021
4021
|
project_id_or_slug,
|
|
@@ -5770,7 +5770,7 @@ class SentryApp(APIApplication):
|
|
|
5770
5770
|
response.raise_for_status()
|
|
5771
5771
|
return response.json()
|
|
5772
5772
|
|
|
5773
|
-
def
|
|
5773
|
+
def list_project_debug_files(
|
|
5774
5774
|
self, organization_id_or_slug, project_id_or_slug
|
|
5775
5775
|
) -> Any:
|
|
5776
5776
|
"""
|
|
@@ -5796,7 +5796,7 @@ class SentryApp(APIApplication):
|
|
|
5796
5796
|
response.raise_for_status()
|
|
5797
5797
|
return response.json()
|
|
5798
5798
|
|
|
5799
|
-
def
|
|
5799
|
+
def delete_project_debug_file(
|
|
5800
5800
|
self, organization_id_or_slug, project_id_or_slug, id
|
|
5801
5801
|
) -> Any:
|
|
5802
5802
|
"""
|
|
@@ -6210,7 +6210,7 @@ class SentryApp(APIApplication):
|
|
|
6210
6210
|
response.raise_for_status()
|
|
6211
6211
|
return response.json()
|
|
6212
6212
|
|
|
6213
|
-
def
|
|
6213
|
+
def list_project_issues(
|
|
6214
6214
|
self,
|
|
6215
6215
|
organization_id_or_slug,
|
|
6216
6216
|
project_id_or_slug,
|
|
@@ -7037,7 +7037,7 @@ class SentryApp(APIApplication):
|
|
|
7037
7037
|
response.raise_for_status()
|
|
7038
7038
|
return response.json()
|
|
7039
7039
|
|
|
7040
|
-
def
|
|
7040
|
+
def list_organization_integration_installations(
|
|
7041
7041
|
self, organization_id_or_slug
|
|
7042
7042
|
) -> list[Any]:
|
|
7043
7043
|
"""
|
|
@@ -7297,11 +7297,11 @@ class SentryApp(APIApplication):
|
|
|
7297
7297
|
self.retrieve_an_organization,
|
|
7298
7298
|
self.update_an_organization,
|
|
7299
7299
|
self.list_an_organization_s_metric_alert_rules,
|
|
7300
|
-
self.
|
|
7301
|
-
self.
|
|
7300
|
+
self.create_organization_metric_alert_rule,
|
|
7301
|
+
self.get_organization_metric_alert_rule,
|
|
7302
7302
|
self.update_a_metric_alert_rule,
|
|
7303
7303
|
self.delete_a_metric_alert_rule,
|
|
7304
|
-
self.
|
|
7304
|
+
self.get_metric_alert_rule_activations,
|
|
7305
7305
|
self.get_integration_provider_information,
|
|
7306
7306
|
self.list_an_organization_s_custom_dashboards,
|
|
7307
7307
|
self.create_a_new_dashboard_for_an_organization,
|
|
@@ -7311,16 +7311,16 @@ class SentryApp(APIApplication):
|
|
|
7311
7311
|
self.list_an_organization_s_discover_saved_queries,
|
|
7312
7312
|
self.create_a_new_saved_query,
|
|
7313
7313
|
self.retrieve_an_organization_s_discover_saved_query,
|
|
7314
|
-
self.
|
|
7315
|
-
self.
|
|
7314
|
+
self.edit_organization_discover_saved_query,
|
|
7315
|
+
self.delete_organization_discover_saved_query,
|
|
7316
7316
|
self.list_an_organization_s_environments,
|
|
7317
7317
|
self.query_discover_events_in_table_format,
|
|
7318
7318
|
self.create_an_external_user,
|
|
7319
7319
|
self.update_an_external_user,
|
|
7320
7320
|
self.delete_an_external_user,
|
|
7321
|
-
self.
|
|
7322
|
-
self.
|
|
7323
|
-
self.
|
|
7321
|
+
self.list_organization_available_integrations,
|
|
7322
|
+
self.get_organization_integration,
|
|
7323
|
+
self.delete_organization_integration,
|
|
7324
7324
|
self.list_an_organization_s_members,
|
|
7325
7325
|
self.add_a_member_to_an_organization,
|
|
7326
7326
|
self.retrieve_an_organization_member,
|
|
@@ -7336,13 +7336,13 @@ class SentryApp(APIApplication):
|
|
|
7336
7336
|
self.delete_a_monitor_or_monitor_environments,
|
|
7337
7337
|
self.retrieve_check_ins_for_a_monitor,
|
|
7338
7338
|
self.list_spike_protection_notifications,
|
|
7339
|
-
self.
|
|
7339
|
+
self.create_spike_protection_notification,
|
|
7340
7340
|
self.retrieve_a_spike_protection_notification_action,
|
|
7341
7341
|
self.update_a_spike_protection_notification_action,
|
|
7342
7342
|
self.delete_a_spike_protection_notification_action,
|
|
7343
7343
|
self.list_an_organization_s_projects,
|
|
7344
7344
|
self.list_an_organization_s_trusted_relays,
|
|
7345
|
-
self.
|
|
7345
|
+
self.get_release_threshold_statuses,
|
|
7346
7346
|
self.retrieve_an_organization_s_release,
|
|
7347
7347
|
self.update_an_organization_s_release,
|
|
7348
7348
|
self.delete_an_organization_s_release,
|
|
@@ -7361,8 +7361,8 @@ class SentryApp(APIApplication):
|
|
|
7361
7361
|
self.update_an_organization_member_s_attributes,
|
|
7362
7362
|
self.delete_an_organization_member_via_scim,
|
|
7363
7363
|
self.retrieve_release_health_session_statistics,
|
|
7364
|
-
self.
|
|
7365
|
-
self.
|
|
7364
|
+
self.get_organization_events_count_by_project,
|
|
7365
|
+
self.get_organization_event_counts_v2,
|
|
7366
7366
|
self.list_an_organization_s_teams,
|
|
7367
7367
|
self.create_a_new_team,
|
|
7368
7368
|
self.list_a_user_s_teams_for_an_organization,
|
|
@@ -7373,7 +7373,7 @@ class SentryApp(APIApplication):
|
|
|
7373
7373
|
self.retrieve_a_project_environment,
|
|
7374
7374
|
self.update_a_project_environment,
|
|
7375
7375
|
self.list_a_project_s_error_events,
|
|
7376
|
-
self.
|
|
7376
|
+
self.debug_event_source_maps,
|
|
7377
7377
|
self.list_a_project_s_data_filters,
|
|
7378
7378
|
self.update_an_inbound_data_filter,
|
|
7379
7379
|
self.list_a_project_s_client_keys,
|
|
@@ -7384,10 +7384,10 @@ class SentryApp(APIApplication):
|
|
|
7384
7384
|
self.list_a_project_s_organization_members,
|
|
7385
7385
|
self.retrieve_a_monitor_for_a_project,
|
|
7386
7386
|
self.update_a_monitor_for_a_project,
|
|
7387
|
-
self.
|
|
7387
|
+
self.delete_project_monitor_or_environments,
|
|
7388
7388
|
self.retrieve_check_ins_for_a_monitor_by_project,
|
|
7389
|
-
self.
|
|
7390
|
-
self.
|
|
7389
|
+
self.get_project_ownership_config,
|
|
7390
|
+
self.update_project_ownership_config,
|
|
7391
7391
|
self.delete_a_replay_instance,
|
|
7392
7392
|
self.list_clicked_nodes,
|
|
7393
7393
|
self.list_recording_segments,
|
|
@@ -7424,8 +7424,8 @@ class SentryApp(APIApplication):
|
|
|
7424
7424
|
self.list_a_repository_s_commits,
|
|
7425
7425
|
self.resolve_a_short_id,
|
|
7426
7426
|
self.list_your_projects,
|
|
7427
|
-
self.
|
|
7428
|
-
self.
|
|
7427
|
+
self.list_project_debug_files,
|
|
7428
|
+
self.delete_project_debug_file,
|
|
7429
7429
|
self.list_a_project_s_users,
|
|
7430
7430
|
self.list_a_tag_s_values,
|
|
7431
7431
|
self.retrieve_event_counts_for_a_project,
|
|
@@ -7437,7 +7437,7 @@ class SentryApp(APIApplication):
|
|
|
7437
7437
|
self.update_a_service_hook,
|
|
7438
7438
|
self.remove_a_service_hook,
|
|
7439
7439
|
self.retrieve_an_event_for_a_project,
|
|
7440
|
-
self.
|
|
7440
|
+
self.list_project_issues,
|
|
7441
7441
|
self.bulk_mutate_a_list_of_issues,
|
|
7442
7442
|
self.bulk_remove_a_list_of_issues,
|
|
7443
7443
|
self.list_a_tag_s_values_related_to_an_issue,
|
|
@@ -7460,7 +7460,7 @@ class SentryApp(APIApplication):
|
|
|
7460
7460
|
self.retrieve_files_changed_in_a_release_s_commits,
|
|
7461
7461
|
self.list_a_release_s_deploys,
|
|
7462
7462
|
self.create_a_new_deploy_for_an_organization,
|
|
7463
|
-
self.
|
|
7463
|
+
self.list_organization_integration_installations,
|
|
7464
7464
|
self.create_or_update_an_external_issue,
|
|
7465
7465
|
self.delete_an_external_issue,
|
|
7466
7466
|
self.enable_spike_protection,
|
|
@@ -2,12 +2,12 @@ from typing import Any # For type hinting
|
|
|
2
2
|
|
|
3
3
|
import httpx
|
|
4
4
|
from loguru import logger
|
|
5
|
+
|
|
6
|
+
from serpapi import SerpApiClient as SerpApiSearch # Added SerpApiError
|
|
5
7
|
from universal_mcp.applications.application import APIApplication
|
|
6
8
|
from universal_mcp.exceptions import NotAuthorizedError # For auth errors
|
|
7
9
|
from universal_mcp.integrations import Integration # For integration type hint
|
|
8
10
|
|
|
9
|
-
from serpapi import SerpApiClient as SerpApiSearch # Added SerpApiError
|
|
10
|
-
|
|
11
11
|
|
|
12
12
|
class SerpapiApp(APIApplication):
|
|
13
13
|
def __init__(self, integration: Integration | None = None, **kwargs: Any) -> None:
|
|
@@ -160,7 +160,7 @@ class SlackApp(APIApplication):
|
|
|
160
160
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
161
161
|
|
|
162
162
|
Tags:
|
|
163
|
-
chat
|
|
163
|
+
chat, important
|
|
164
164
|
"""
|
|
165
165
|
request_body_data = None
|
|
166
166
|
request_body_data = {
|
|
@@ -435,7 +435,7 @@ class SlackApp(APIApplication):
|
|
|
435
435
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
436
436
|
|
|
437
437
|
Tags:
|
|
438
|
-
search
|
|
438
|
+
search, important
|
|
439
439
|
"""
|
|
440
440
|
url = f"{self.base_url}/search.messages"
|
|
441
441
|
query_params = {
|
|
@@ -499,7 +499,7 @@ class SlackApp(APIApplication):
|
|
|
499
499
|
HTTPStatusError: Raised when the API request fails with detailed error information including status code and response body.
|
|
500
500
|
|
|
501
501
|
Tags:
|
|
502
|
-
users
|
|
502
|
+
users, important
|
|
503
503
|
"""
|
|
504
504
|
url = f"{self.base_url}/users.info"
|
|
505
505
|
query_params = {
|