Unstructured API MCP Server

Official

create_weaviate_destination

Create an weaviate vector database destination connector.

Args: cluster_url: URL of the weaviate cluster collection : Name of the collection to use in the weaviate cluster Note: The collection is a table in the weaviate cluster. In platform, there are dedicated code to generate collection for users here, due to the simplicity of the server, we are not generating it for users. Returns: String containing the created destination connector information

Input Schema

NameRequiredDescriptionDefault
cluster_urlYes
collectionYes
nameYes

Input Schema (JSON Schema)

{ "properties": { "cluster_url": { "title": "Cluster Url", "type": "string" }, "collection": { "title": "Collection", "type": "string" }, "name": { "title": "Name", "type": "string" } }, "required": [ "name", "cluster_url", "collection" ], "title": "create_weaviate_destinationArguments", "type": "object" }