Unstructured API MCP Server

Official

update_s3_source

Update an S3 source connector.

Args: source_id: ID of the source connector to update remote_url: The S3 URI to the bucket or folder recursive: Whether to access subfolders within the bucket Returns: String containing the updated source connector information

Input Schema

NameRequiredDescriptionDefault
recursiveNo
remote_urlNo
source_idYes

Input Schema (JSON Schema)

{ "properties": { "recursive": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Recursive" }, "remote_url": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Remote Url" }, "source_id": { "title": "Source Id", "type": "string" } }, "required": [ "source_id" ], "title": "update_s3_sourceArguments", "type": "object" }