Unstructured API MCP Server

Official

create_astradb_destination

Create an AstraDB destination connector.

Args: name: A unique name for this connector collection_name: The name of the collection to use keyspace: The AstraDB keyspace batch_size: The batch size for inserting documents, must be positive (default: 20) Note: A collection in AstraDB is a schemaless document store optimized for NoSQL workloads, equivalent to a table in traditional databases. A keyspace is the top-level namespace in AstraDB that groups multiple collections. We require the users to create their own collection and keyspace before creating the connector. Returns: String containing the created destination connector information

Input Schema

NameRequiredDescriptionDefault
batch_sizeNo
collection_nameYes
keyspaceYes
nameYes

Input Schema (JSON Schema)

{ "properties": { "batch_size": { "default": 20, "title": "Batch Size", "type": "integer" }, "collection_name": { "title": "Collection Name", "type": "string" }, "keyspace": { "title": "Keyspace", "type": "string" }, "name": { "title": "Name", "type": "string" } }, "required": [ "name", "collection_name", "keyspace" ], "title": "create_astradb_destinationArguments", "type": "object" }