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
@@ -1,9 +1,9 @@
1
1
  from markitdown import MarkItDown
2
2
 
3
- from universal_mcp.applications.application import Application
3
+ from universal_mcp.applications import BaseApplication
4
4
 
5
5
 
6
- class MarkitdownApp(Application):
6
+ class MarkitdownApp(BaseApplication):
7
7
  def __init__(self, **kwargs):
8
8
  super().__init__(name="markitdown", **kwargs)
9
9
  self.markitdown = MarkItDown()
@@ -1,7 +1,5 @@
1
1
  from typing import Any, Literal
2
2
 
3
- from loguru import logger
4
-
5
3
  from universal_mcp.applications.application import APIApplication
6
4
  from universal_mcp.integrations import Integration
7
5
 
@@ -9,41 +7,8 @@ from universal_mcp.integrations import Integration
9
7
  class PerplexityApp(APIApplication):
10
8
  def __init__(self, integration: Integration | None = None) -> None:
11
9
  super().__init__(name="perplexity", integration=integration)
12
- self.api_key: str | None = None
13
10
  self.base_url = "https://api.perplexity.ai"
14
11
 
15
- def _set_api_key(self):
16
- if self.api_key:
17
- return
18
-
19
- if not self.integration:
20
- raise ValueError("Integration is None. Cannot retrieve Perplexity API Key.")
21
-
22
- credentials = self.integration.get_credentials()
23
- if not credentials:
24
- raise ValueError(
25
- f"Failed to retrieve Perplexity API Key using integration '{self.integration.name}'. "
26
- )
27
- api_key = (
28
- credentials.get("api_key")
29
- or credentials.get("API_KEY")
30
- or credentials.get("apiKey")
31
- )
32
- if not api_key:
33
- raise ValueError(
34
- f"Invalid credential format received for Perplexity API Key via integration '{self.integration.name}'. "
35
- )
36
- self.api_key = api_key
37
-
38
- def _get_headers(self) -> dict[str, str]:
39
- self._set_api_key()
40
- logger.debug(f"Perplexity API Key: {self.api_key}")
41
- return {
42
- "Authorization": f"Bearer {self.api_key}",
43
- "Content-Type": "application/json",
44
- "Accept": "application/json",
45
- }
46
-
47
12
  def chat(
48
13
  self,
49
14
  query: str,
@@ -0,0 +1,65 @@
1
+ # Replicate MCP Server
2
+
3
+ An MCP Server for the Replicate API.
4
+
5
+ ## Supported Integrations
6
+
7
+ - AgentR
8
+ - API Key (Coming Soon)
9
+ - OAuth (Coming Soon)
10
+
11
+ ## Tools
12
+
13
+ This is automatically generated from OpenAPI schema for the Replicate API.
14
+
15
+ ## Supported Integrations
16
+
17
+ This tool can be integrated with any service that supports HTTP requests.
18
+
19
+ ## Tool List
20
+
21
+ | Tool | Description |
22
+ |------|-------------|
23
+ | account_get | Gets information about the authenticated account. |
24
+ | collections_list | Lists collections of models available on Replicate, returning a paginated list of collection objects. |
25
+ | collections_get | Retrieves detailed information about a specific model collection, with automatic truncation of large model lists to manage response size. |
26
+ | deployments_list | Lists all deployments associated with the authenticated account. |
27
+ | deployments_create | Creates a new model deployment with specified configuration parameters. |
28
+ | deployments_get | Retrieves detailed information about a specific deployment by its owner and name. |
29
+ | deployments_update | Updates configurable properties of an existing deployment, such as hardware specifications and instance scaling parameters. |
30
+ | deployments_delete | Deletes a specified deployment associated with a given owner or organization |
31
+ | deployments_predictions_create | Creates an asynchronous prediction using a specified deployment, optionally configuring webhook notifications for status updates. |
32
+ | hardware_list | Retrieves a list of available hardware options for running models. |
33
+ | models_list | Retrieves a paginated list of publicly available models from the Replicate API. |
34
+ | models_create | Creates a new model in the system with specified parameters and metadata. |
35
+ | models_search | Searches for public models based on a provided query string |
36
+ | models_get | Retrieves detailed information about a specific AI model by its owner and name |
37
+ | models_delete | Deletes a private model from the system, provided it has no existing versions. |
38
+ | models_examples_list | Retrieves a list of example predictions associated with a specific model. |
39
+ | models_predictions_create | Creates an asynchronous prediction request using a specified model version. |
40
+ | models_readme_get | Retrieves the README content for a specified model in Markdown format. |
41
+ | models_versions_list | Lists all available versions of a specified model. |
42
+ | models_versions_get | Retrieves detailed information about a specific version of a model by querying the API. |
43
+ | models_versions_delete | Deletes a specific version of a model and its associated predictions/output. |
44
+ | trainings_create | Initiates a new asynchronous training job for a specific model version, with optional webhook notifications for progress updates. |
45
+ | predictions_list | Lists all predictions created by the authenticated account within an optional time range. |
46
+ | predictions_create | Creates an asynchronous prediction request using a specified model version. |
47
+ | predictions_get | Retrieves the current state and details of a prediction by its ID. |
48
+ | predictions_cancel | Cancels a running prediction job identified by its ID. |
49
+ | trainings_list | Lists all training jobs created by the authenticated account. |
50
+ | trainings_get | Retrieves the current state of a training job by its ID. |
51
+ | trainings_cancel | Cancels a specific training job in progress. |
52
+ | webhooks_default_secret_get | Retrieves the signing secret for the default webhook endpoint. |
53
+
54
+
55
+
56
+ ## Usage
57
+
58
+ - Login to AgentR
59
+ - Follow the quickstart guide to setup MCP Server for your client
60
+ - Visit Apps Store and enable the Replicate app
61
+ - Restart the MCP Server
62
+
63
+ ### Local Development
64
+
65
+ - Follow the README to test with the local MCP Server
File without changes