update_astradb_destination
Modifies an AstraDB destination connector by updating its collection name, keyspace, or batch size. Ensures seamless integration with your data pipeline using the Unstructured API MCP Server.
Instructions
Update an AstraDB destination connector.
Args:
destination_id: ID of the destination connector to update
collection_name: The name of the collection to use (optional)
keyspace: The AstraDB keyspace (optional)
batch_size: The batch size for inserting documents (optional)
Note: We require the users to create their own collection and keyspace before creating the connector.
Returns:
String containing the updated destination connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
batch_size | No | ||
collection_name | No | ||
destination_id | Yes | ||
keyspace | No |
Input Schema (JSON Schema)
{
"properties": {
"batch_size": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Batch Size"
},
"collection_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Collection Name"
},
"destination_id": {
"title": "Destination Id",
"type": "string"
},
"keyspace": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Keyspace"
}
},
"required": [
"destination_id"
],
"title": "update_astradb_destinationArguments",
"type": "object"
}