Loading...

Chroma MCP server provides a standardized interface for LLMs to access and manage data within a Chroma embedding database.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
Chroma MCP server provides a standardized interface for LLMs to access and manage data within a Chroma embedding database.
chroma_list_collectionsLists all available collections within the Chroma database, supporting pagination.
Read-only operation, no data modification.
chroma_create_collectionCreates a new collection in the Chroma database with configurable HNSW parameters.
Adds a new collection, but doesn't modify existing data without explicit further commands.
chroma_peek_collectionReturns a sample of documents from a specified collection.
Read-only operation, no data modification.
chroma_get_collection_infoRetrieves detailed information about a specific collection, such as its configuration and statistics.
Read-only operation, no data modification.
chroma_get_collection_countReturns the number of documents stored within a specified collection.
Read-only operation, no data modification.
chroma_modify_collectionUpdates the name or metadata of an existing collection.
Modifies collection metadata, which could impact data organization.
chroma_delete_collectionDeletes an entire collection from the Chroma database.
Destructive operation, irreversible data loss.
chroma_add_documentsAdds new documents to a collection, including optional metadata and custom IDs.
Adds data to the collection, potentially increasing its size and impacting query performance.
chroma_query_documentsQueries documents within a collection using semantic search and advanced filtering options.
Read-only operation, no data modification.
chroma_get_documentsRetrieves documents from a collection based on specified IDs or filters, with pagination support.
Read-only operation, no data modification.
chroma_update_documentsUpdates the content, metadata, or embeddings of existing documents within a collection.
Modifies existing data, potentially altering search results and data integrity.
chroma_delete_documentsDeletes specific documents from a collection.
Destructive operation, irreversible data loss of specific documents.
API Key