Unstructured API MCP Server

Official

update_s3_destination

Update an S3 destination connector.

Args: destination_id: ID of the destination connector to update remote_url: The S3 URI to the bucket or folder Returns: String containing the updated destination connector information

Input Schema

NameRequiredDescriptionDefault
destination_idYes
recursiveNo
remote_urlNo

Input Schema (JSON Schema)

{ "properties": { "destination_id": { "title": "Destination Id", "type": "string" }, "recursive": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Recursive" }, "remote_url": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Remote Url" } }, "required": [ "destination_id" ], "title": "update_s3_destinationArguments", "type": "object" }