chroma_delete_collection
Remove a specific collection from the Chroma MCP Server by specifying its name, enabling clean data management within the Chroma embedding database.
Instructions
Delete a Chroma collection.
Args:
collection_name: Name of the collection to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_name": {
"title": "Collection Name",
"type": "string"
}
},
"required": [
"collection_name"
],
"title": "chroma_delete_collectionArguments",
"type": "object"
}