update_s3_source
Modify an S3 source connector in the Unstructured API MCP Server by updating the S3 URI, enabling or disabling recursive folder access, and retrieving updated connector details.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
recursive | No | ||
remote_url | No | ||
source_id | Yes |
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"
}