delete_document
Remove a document from Chroma vector database using its unique ID. This tool ensures efficient document management and cleanup in the MCP server environment.
Instructions
Delete a document from the Chroma vector database by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"document_id": {
"type": "string"
}
},
"required": [
"document_id"
],
"type": "object"
}