Unstructured API MCP Server

Official

update_weaviate_destination

Update an weaviate destination connector.

Args: destination_id: ID of the destination connector to update cluster_url (optional): URL of the weaviate cluster collection (optional): Name of the collection(like a file) to use in the weaviate cluster Returns: String containing the updated destination connector information

Input Schema

NameRequiredDescriptionDefault
cluster_urlNo
collectionNo
destination_idYes

Input Schema (JSON Schema)

{ "properties": { "cluster_url": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Cluster Url" }, "collection": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Collection" }, "destination_id": { "title": "Destination Id", "type": "string" } }, "required": [ "destination_id" ], "title": "update_weaviate_destinationArguments", "type": "object" }