universal-mcp 0.1.8rc3__py3-none-any.whl → 0.1.9__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.
Files changed (71) hide show
  1. universal_mcp/applications/__init__.py +7 -2
  2. universal_mcp/applications/ahrefs/README.md +76 -0
  3. universal_mcp/applications/ahrefs/__init__.py +0 -0
  4. universal_mcp/applications/ahrefs/app.py +2291 -0
  5. universal_mcp/applications/application.py +191 -87
  6. universal_mcp/applications/cal_com_v2/README.md +175 -0
  7. universal_mcp/applications/cal_com_v2/__init__.py +0 -0
  8. universal_mcp/applications/cal_com_v2/app.py +5390 -0
  9. universal_mcp/applications/calendly/app.py +0 -12
  10. universal_mcp/applications/clickup/README.md +160 -0
  11. universal_mcp/applications/clickup/__init__.py +0 -0
  12. universal_mcp/applications/clickup/app.py +5009 -0
  13. universal_mcp/applications/coda/app.py +0 -33
  14. universal_mcp/applications/e2b/app.py +2 -28
  15. universal_mcp/applications/falai/README.md +42 -0
  16. universal_mcp/applications/falai/__init__.py +0 -0
  17. universal_mcp/applications/falai/app.py +332 -0
  18. universal_mcp/applications/figma/README.md +74 -0
  19. universal_mcp/applications/figma/__init__.py +0 -0
  20. universal_mcp/applications/figma/app.py +1261 -0
  21. universal_mcp/applications/firecrawl/app.py +2 -32
  22. universal_mcp/applications/gong/README.md +88 -0
  23. universal_mcp/applications/gong/__init__.py +0 -0
  24. universal_mcp/applications/gong/app.py +2297 -0
  25. universal_mcp/applications/google_calendar/app.py +0 -11
  26. universal_mcp/applications/google_docs/app.py +0 -18
  27. universal_mcp/applications/google_drive/app.py +0 -17
  28. universal_mcp/applications/google_mail/app.py +0 -16
  29. universal_mcp/applications/google_sheet/app.py +0 -18
  30. universal_mcp/applications/hashnode/app.py +81 -0
  31. universal_mcp/applications/hashnode/prompt.md +23 -0
  32. universal_mcp/applications/heygen/README.md +69 -0
  33. universal_mcp/applications/heygen/__init__.py +0 -0
  34. universal_mcp/applications/heygen/app.py +956 -0
  35. universal_mcp/applications/mailchimp/README.md +306 -0
  36. universal_mcp/applications/mailchimp/__init__.py +0 -0
  37. universal_mcp/applications/mailchimp/app.py +10937 -0
  38. universal_mcp/applications/markitdown/app.py +2 -2
  39. universal_mcp/applications/perplexity/app.py +0 -35
  40. universal_mcp/applications/replicate/README.md +65 -0
  41. universal_mcp/applications/replicate/__init__.py +0 -0
  42. universal_mcp/applications/replicate/app.py +980 -0
  43. universal_mcp/applications/resend/app.py +0 -18
  44. universal_mcp/applications/retell_ai/README.md +46 -0
  45. universal_mcp/applications/retell_ai/__init__.py +0 -0
  46. universal_mcp/applications/retell_ai/app.py +333 -0
  47. universal_mcp/applications/rocketlane/README.md +42 -0
  48. universal_mcp/applications/rocketlane/__init__.py +0 -0
  49. universal_mcp/applications/rocketlane/app.py +194 -0
  50. universal_mcp/applications/serpapi/app.py +2 -28
  51. universal_mcp/applications/spotify/README.md +116 -0
  52. universal_mcp/applications/spotify/__init__.py +0 -0
  53. universal_mcp/applications/spotify/app.py +2526 -0
  54. universal_mcp/applications/supabase/README.md +112 -0
  55. universal_mcp/applications/supabase/__init__.py +0 -0
  56. universal_mcp/applications/supabase/app.py +2970 -0
  57. universal_mcp/applications/tavily/app.py +0 -20
  58. universal_mcp/applications/wrike/app.py +0 -12
  59. universal_mcp/applications/youtube/app.py +0 -18
  60. universal_mcp/integrations/agentr.py +27 -4
  61. universal_mcp/integrations/integration.py +14 -6
  62. universal_mcp/servers/server.py +53 -6
  63. universal_mcp/stores/store.py +6 -0
  64. universal_mcp/tools/tools.py +2 -2
  65. universal_mcp/utils/docstring_parser.py +192 -94
  66. universal_mcp/utils/installation.py +199 -8
  67. {universal_mcp-0.1.8rc3.dist-info → universal_mcp-0.1.9.dist-info}/METADATA +6 -1
  68. universal_mcp-0.1.9.dist-info/RECORD +116 -0
  69. universal_mcp-0.1.8rc3.dist-info/RECORD +0 -75
  70. {universal_mcp-0.1.8rc3.dist-info → universal_mcp-0.1.9.dist-info}/WHEEL +0 -0
  71. {universal_mcp-0.1.8rc3.dist-info → universal_mcp-0.1.9.dist-info}/entry_points.txt +0 -0
@@ -15,41 +15,11 @@ class FirecrawlApp(APIApplication):
15
15
 
16
16
  def __init__(self, integration: Integration | None = None) -> None:
17
17
  super().__init__(name="firecrawl", integration=integration)
18
- self.api_key: str | None = None
19
-
20
- def _set_api_key(self):
21
- """
22
- Ensures the API key is loaded from the integration.
23
- Raises ValueError if the integration or key is missing/misconfigured.
24
- """
25
- if self.api_key:
26
- return
27
-
28
- if not self.integration:
29
- raise ValueError("Integration is None. Cannot retrieve Firecrawl API Key.")
30
-
31
- credentials = self.integration.get_credentials()
32
- if not credentials:
33
- raise ValueError(
34
- f"Failed to retrieve Firecrawl API Key using integration '{self.integration.name}'. "
35
- f"Check store configuration (e.g., ensure the correct source like environment variable is set)."
36
- )
37
- api_key = (
38
- credentials.get("api_key")
39
- or credentials.get("API_KEY")
40
- or credentials.get("apiKey")
41
- )
42
- if not api_key:
43
- raise ValueError(
44
- f"Failed to retrieve Firecrawl API Key using integration '{self.integration.name}'. "
45
- f"Check store configuration (e.g., ensure the correct environment variable is set)."
46
- )
47
- self.api_key = api_key
48
18
 
49
19
  def _get_client(self) -> FirecrawlApiClient:
50
20
  """Initializes and returns the Firecrawl client after ensuring API key is set."""
51
- self._set_api_key()
52
- return FirecrawlApiClient(api_key=self.api_key)
21
+ api_key = self.integration.get_credentials().get("api_key")
22
+ return FirecrawlApiClient(api_key=api_key)
53
23
 
54
24
  def scrape_url(
55
25
  self, url: str, params: dict[str, Any] | None = None
@@ -0,0 +1,88 @@
1
+
2
+ # Gong MCP Server
3
+
4
+ An MCP Server for the Gong API.
5
+
6
+ ## Supported Integrations
7
+
8
+ - AgentR
9
+ - API Key (Coming Soon)
10
+ - OAuth (Coming Soon)
11
+
12
+ ## Tools
13
+
14
+ This is automatically generated from OpenAPI schema for the Gong API.
15
+
16
+ ## Supported Integrations
17
+
18
+ This tool can be integrated with any service that supports HTTP requests.
19
+
20
+ ## Tool List
21
+
22
+ | Tool | Description |
23
+ |------|-------------|
24
+ | list_calls | Retrieves a list of call records within the specified date range, with optional pagination and workspace filtering. |
25
+ | add_call | Creates and submits a new call record with detailed metadata to the remote service. |
26
+ | get_call | Retrieves details for a specific call by its identifier. |
27
+ | list_calls_extensive | Retrieves a list of extensive call records matching the specified filter criteria, with optional pagination and content selection. |
28
+ | get_permission_profile | Retrieve the details of a permission profile by its profile ID. |
29
+ | update_permission_profile | Updates an existing permission profile with the specified access settings and permissions. |
30
+ | create_permission_profile | Creates a new permission profile in the specified workspace with customizable access and permission settings. |
31
+ | update_meeting | Updates the details of an existing meeting with new information such as time, invitees, and title. |
32
+ | delete_meeting | Deletes a meeting by its ID, optionally specifying the organizer's email. |
33
+ | content_viewed | Reports a content view event to the customer engagement system with detailed metadata about the event and content. |
34
+ | content_shared | Reports a content sharing event to the customer engagement system with detailed metadata about the shared content, sharer, and recipients. |
35
+ | custom_action | Submits a custom customer engagement action event with detailed reporting and context information to the server. |
36
+ | list_generic_crm_integration | Retrieves a list of generic CRM integrations from the API. |
37
+ | register_generic_crm_integration | Registers a generic CRM integration for a given owner email and integration name. |
38
+ | delete_generic_crm_integration | Deletes a generic CRM integration using the provided integration and client request IDs. |
39
+ | add_users_access_to_calls | Updates user access permissions for calls by sending a PUT request with the specified access list. |
40
+ | get_users_access_to_calls | Retrieves user access information for calls based on the provided filter criteria. |
41
+ | delete_users_access_to_calls | Deletes a list of users' access permissions to calls. |
42
+ | list_multiple_users | Retrieves a list of users based on a provided filter and optional pagination cursor. |
43
+ | list_interaction_stats | Retrieves interaction statistics based on specified filter criteria, with optional pagination support. |
44
+ | list_answered_scorecards | Retrieves a paginated list of answered scorecards based on the provided filter criteria. |
45
+ | list_multiple_users_day_by_day_activity | Retrieves day-by-day activity statistics for multiple users based on a provided filter. |
46
+ | list_multiple_users_aggregate_activity | Aggregates and returns activity statistics for multiple users based on specified filters. |
47
+ | list_multiple_users_aggregate_by_period | Aggregates activity statistics for multiple users over a specified period using given filter criteria. |
48
+ | add_meeting | Creates a new meeting with the specified details and returns the server's response as a dictionary. |
49
+ | integration_status | Retrieves the integration status for specified email addresses via the meetings API. |
50
+ | integration_settings | Sends integration type settings to the integration settings API endpoint and returns the server's response as a dictionary. |
51
+ | get_flows_for_prospects | Fetches flow data for the specified CRM prospect IDs from the API. |
52
+ | assign_prospects | Assigns a list of CRM prospect IDs to a specified flow instance and owner via an API POST request. |
53
+ | add_digital_interaction | Submits a digital interaction event record to the API with required metadata and content. |
54
+ | purge_phone_number | Erases all data associated with the specified phone number via the data privacy API. |
55
+ | purge_email_address | Permanently erases all data associated with the specified email address from the system. |
56
+ | list_crm_schema_fields | Retrieves the schema fields for a specified CRM object type associated with a given integration. |
57
+ | upload_crm_schema_field | Uploads CRM entity schema fields to the integration service for the specified CRM object type. |
58
+ | get_crm_objects | Retrieves CRM objects by their CRM IDs from a specified integration and object type. |
59
+ | get_call_transcripts | Retrieves call transcripts based on the specified filter and optional pagination cursor. |
60
+ | list_workspaces | Retrieves a list of all available workspaces from the API. |
61
+ | list_users | Retrieves a paginated list of users from the API, with optional filtering by cursor and inclusion of avatar data. |
62
+ | get_user | Retrieves user information by user ID from the API. |
63
+ | get_user_history | Retrieves the settings history for a specific user by user ID. |
64
+ | list_trackers | Retrieves a list of trackers for the specified workspace from the API. |
65
+ | list_scorecards | Retrieves a list of scorecard settings from the API. |
66
+ | list_permission_profile_users | Retrieves a list of users associated with a specified permission profile. |
67
+ | list_logs | Retrieves a list of logs for the specified log type and time range, with optional cursor-based pagination. |
68
+ | get_library_structure | Retrieves the hierarchical structure of library folders, optionally filtered by workspace ID. |
69
+ | get_calls_in_specific_folder | Retrieves the list of calls contained within a specified folder from the remote library API. |
70
+ | list_flows | Retrieves a list of flows owned by the specified user, with optional pagination and workspace filtering. |
71
+ | find_all_references_to_phone_number | Fetches all references to a specified phone number from the data privacy API. |
72
+ | find_all_references_to_email_address | Finds and returns all data references associated with a given email address. |
73
+ | get_request_status | Retrieves the status of a CRM request using the provided integration and client request IDs. |
74
+ | list_crmcalls_manual_association | Retrieves a list of manually associated CRM call records, with optional filtering by date and pagination. |
75
+ | list_permission_profile | Retrieves the list of permission profiles for the specified workspace. |
76
+
77
+
78
+
79
+ ## Usage
80
+
81
+ - Login to AgentR
82
+ - Follow the quickstart guide to setup MCP Server for your client
83
+ - Visit Apps Store and enable the Gong app
84
+ - Restart the MCP Server
85
+
86
+ ### Local Development
87
+
88
+ - Follow the README to test with the local MCP Server
File without changes