Unstructured API MCP Server

Official

update_s3_destination

Modify the S3 destination connector by updating its ID and remote URL, enabling accurate data storage and retrieval within the Unstructured API MCP Server.

Instructions

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" }
ID: 56f7310rbq