Skip to main content
Glama

Chroma MCP Server

Official

chroma_query_documents

Search and retrieve documents from a Chroma collection with advanced filtering, including metadata and document content, to find precise results efficiently.

Instructions

Query documents from a Chroma collection with advanced filtering.

Args: collection_name: Name of the collection to query query_texts: List of query texts to search for n_results: Number of results to return per query where: Optional metadata filters using Chroma's query operators Examples: - Simple equality: {"metadata_field": "value"} - Comparison: {"metadata_field": {"$gt": 5}} - Logical AND: {"$and": [{"field1": {"$eq": "value1"}}, {"field2": {"$gt": 5}}]} - Logical OR: {"$or": [{"field1": {"$eq": "value1"}}, {"field1": {"$eq": "value2"}}]} where_document: Optional document content filters include: List of what to include in response. By default, this will include documents, metadatas, and distances.

Input Schema

NameRequiredDescriptionDefault
collection_nameYes
includeNo
n_resultsNo
query_textsYes
whereNo
where_documentNo

Input Schema (JSON Schema)

{ "properties": { "collection_name": { "title": "Collection Name", "type": "string" }, "include": { "default": [ "documents", "metadatas", "distances" ], "items": { "type": "string" }, "title": "Include", "type": "array" }, "n_results": { "default": 5, "title": "N Results", "type": "integer" }, "query_texts": { "items": { "type": "string" }, "title": "Query Texts", "type": "array" }, "where": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "default": null, "title": "Where" }, "where_document": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "default": null, "title": "Where Document" } }, "required": [ "collection_name", "query_texts" ], "title": "chroma_query_documentsArguments", "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chroma-core/chroma-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server