chroma_fork_collection
Create a new collection by copying an existing one, allowing you to reuse data structures and metadata efficiently within the Chroma MCP Server environment.
Instructions
Fork a Chroma collection.
Args:
collection_name: Name of the collection to fork
new_collection_name: Name of the new collection to create
metadata: Optional metadata dict to add to the new collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_name | Yes | ||
new_collection_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_name": {
"title": "Collection Name",
"type": "string"
},
"new_collection_name": {
"title": "New Collection Name",
"type": "string"
}
},
"required": [
"collection_name",
"new_collection_name"
],
"title": "chroma_fork_collectionArguments",
"type": "object"
}