universal-mcp 0.1.9rc1__py3-none-any.whl → 0.1.10__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 (29) hide show
  1. universal_mcp/applications/application.py +19 -30
  2. universal_mcp/applications/cal_com_v2/app.py +1676 -1021
  3. universal_mcp/applications/clickup/app.py +1496 -846
  4. universal_mcp/applications/falai/README.md +42 -0
  5. universal_mcp/applications/falai/__init__.py +0 -0
  6. universal_mcp/applications/falai/app.py +332 -0
  7. universal_mcp/applications/gong/README.md +88 -0
  8. universal_mcp/applications/gong/__init__.py +0 -0
  9. universal_mcp/applications/gong/app.py +2297 -0
  10. universal_mcp/applications/hashnode/app.py +12 -8
  11. universal_mcp/applications/hashnode/prompt.md +2 -0
  12. universal_mcp/applications/heygen/README.md +69 -0
  13. universal_mcp/applications/heygen/__init__.py +0 -0
  14. universal_mcp/applications/heygen/app.py +956 -0
  15. universal_mcp/applications/mailchimp/app.py +3848 -1794
  16. universal_mcp/applications/replicate/README.md +47 -35
  17. universal_mcp/applications/replicate/__init__.py +0 -0
  18. universal_mcp/applications/replicate/app.py +215 -204
  19. universal_mcp/applications/retell_ai/app.py +84 -67
  20. universal_mcp/applications/rocketlane/app.py +49 -35
  21. universal_mcp/applications/spotify/app.py +723 -428
  22. universal_mcp/applications/supabase/app.py +909 -583
  23. universal_mcp/servers/server.py +50 -0
  24. universal_mcp/stores/store.py +2 -3
  25. universal_mcp/utils/docstring_parser.py +67 -36
  26. {universal_mcp-0.1.9rc1.dist-info → universal_mcp-0.1.10.dist-info}/METADATA +5 -1
  27. {universal_mcp-0.1.9rc1.dist-info → universal_mcp-0.1.10.dist-info}/RECORD +29 -19
  28. {universal_mcp-0.1.9rc1.dist-info → universal_mcp-0.1.10.dist-info}/WHEEL +0 -0
  29. {universal_mcp-0.1.9rc1.dist-info → universal_mcp-0.1.10.dist-info}/entry_points.txt +0 -0
@@ -1,53 +1,65 @@
1
+ # Replicate MCP Server
2
+
3
+ An MCP Server for the Replicate API.
1
4
 
2
- # App MCP Server
3
- An MCP Server for the App API.
4
5
  ## Supported Integrations
6
+
5
7
  - AgentR
6
8
  - API Key (Coming Soon)
7
9
  - OAuth (Coming Soon)
10
+
8
11
  ## Tools
9
- This is automatically generated from the App module.
12
+
13
+ This is automatically generated from OpenAPI schema for the Replicate API.
14
+
10
15
  ## Supported Integrations
16
+
11
17
  This tool can be integrated with any service that supports HTTP requests.
18
+
12
19
  ## Tool List
20
+
13
21
  | Tool | Description |
14
22
  |------|-------------|
15
- | account_get | Gets information about the authenticated account. Args: None: This f... |
16
- | collections_list | Lists collections of models available on Replicate, returning a paginated list of collection obje... |
17
- | collections_get | Retrieves detailed information about a specific model collection, with automatic truncation of la... |
18
- | deployments_list | Lists all deployments associated with the authenticated account. Args: ... |
19
- | deployments_create | Creates a new model deployment with specified configuration parameters. Args: ... |
20
- | deployments_get | Retrieves detailed information about a specific deployment by its owner and name. ... |
21
- | deployments_update | Updates configurable properties of an existing deployment, such as hardware specifications and in... |
22
- | deployments_delete | Deletes a specified deployment associated with a given owner or organization Arg... |
23
- | deployments_predictions_create | Creates an asynchronous prediction using a specified deployment, optionally configuring webhook n... |
24
- | hardware_list | Retrieves a list of available hardware options for running models. Returns: ... |
25
- | models_list | Retrieves a paginated list of publicly available models from the Replicate API. ... |
26
- | models_create | Creates a new model in the system with specified parameters and metadata. Args: ... |
27
- | models_search | Searches for public models based on a provided query string Args: qu... |
28
- | models_get | Retrieves detailed information about a specific AI model by its owner and name A... |
29
- | models_delete | Deletes a private model from the system, provided it has no existing versions. A... |
30
- | models_examples_list | Retrieves a list of example predictions associated with a specific model. Args: ... |
31
- | models_predictions_create | Creates an asynchronous prediction request using a specified machine learning model. ... |
32
- | models_readme_get | Retrieves the README content for a specified model in Markdown format. Args: ... |
33
- | models_versions_list | Lists all available versions of a specified model. Args: model_owner... |
34
- | models_versions_get | Retrieves detailed information about a specific version of a model by querying the API. ... |
35
- | models_versions_delete | Deletes a specific version of a model and its associated predictions/output. Arg... |
36
- | trainings_create | Initiates a new asynchronous training job for a specific model version, with optional webhook not... |
37
- | predictions_list | Lists all predictions created by the authenticated account within an optional time range. ... |
38
- | predictions_create | Creates an asynchronous prediction request using a specified model version. Args... |
39
- | predictions_get | Retrieves the current state and details of a prediction by its ID. Args: ... |
40
- | predictions_cancel | Cancels a running prediction job identified by its ID. Args: predict... |
41
- | trainings_list | Lists all training jobs created by the authenticated account. Returns: ... |
42
- | trainings_get | Retrieves the current state of a training job by its ID. Args: train... |
43
- | trainings_cancel | Cancels a specific training job in progress. Args: training_id: Stri... |
44
- | webhooks_default_secret_get | Retrieves the signing secret for the default webhook endpoint. Returns: ... |
45
- | list_tools | Returns a list of methods exposed as tools by this application. |
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
+
46
55
 
47
56
  ## Usage
57
+
48
58
  - Login to AgentR
49
59
  - Follow the quickstart guide to setup MCP Server for your client
50
- - Visit Apps Store and enable the App app
60
+ - Visit Apps Store and enable the Replicate app
51
61
  - Restart the MCP Server
62
+
52
63
  ### Local Development
64
+
53
65
  - Follow the README to test with the local MCP Server
File without changes