DeleteCollection
Remove a named collection from Astra DB using the MCP Server. Specify the collection name to delete it and manage database storage effectively.
Instructions
Delete a collection from the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to delete |
Input Schema (JSON Schema)
{
"properties": {
"collectionName": {
"description": "Name of the collection to delete",
"type": "string"
}
},
"required": [
"collectionName"
],
"type": "object"
}