You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`list_sources`| Lists available sources from the Unstructured API. |
10
+
|`get_source_info`| Get detailed information about a specific source connector. |
11
+
|`create_source_connector`| Create a source connector.) |
12
+
|`update_source_connector`| Update an existing source connector by params. |
13
+
|`delete_source_connector`| Delete a source connector by source id. |
14
+
|`list_destinations`| Lists available destinations from the Unstructured API. |
15
+
|`get_destination_info`| Get detailed info about a specific destination connector |
16
+
|`create_destination_connector`| Create a destination connector by params. |
17
+
|`update_destination_connector`| Update an existing destination connector by destination id. |
18
+
|`delete_destination_connector`| Delete a destination connector by destination id. |
19
+
|`list_workflows`| Lists workflows from the Unstructured API. |
20
+
|`get_workflow_info`| Get detailed information about a specific workflow. |
21
+
|`create_workflow`| Create a new workflow with source, destination id, etc. |
22
+
|`run_workflow`| Run a specific workflow with workflow id |
23
+
|`update_workflow`| Update an existing workflow by params. |
24
+
|`delete_workflow`| Delete a specific workflow by id. |
25
+
|`list_jobs`| Lists jobs for a specific workflow from the Unstructured API. |
26
+
|`get_job_info`| Get detailed information about a specific job by job id. |
27
+
|`cancel_job`| Delete a specific job by id. |
28
+
|`list_workflows_with_finished_jobs`| Lists all workflows that have any completed job, together with information about source and destination details. |
28
29
29
30
Below is a list of connectors the `UNS-MCP` server currently supports, please see the full list of source connectors that Unstructured platform supports [here](https://docs.unstructured.io/api-reference/workflow/sources/overview) and destination list [here](https://docs.unstructured.io/api-reference/workflow/destinations/overview). We are planning on adding more!
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "uns_mcp"
3
-
version = "0.1.5"# Set only non-dev versions to release
3
+
version = "0.1.6"# Set only non-dev versions to release
4
4
description = "MCP server implementation providing structured tools for interacting with the Unstructured API, managing sources, destinations, workflows, and jobs"
0 commit comments