---
title: "Chroma MCP Server for ToolPiper · ModelPiper"
description: "Vector and full-text search over a Chroma collection. Chroma is an open-source embedding database; this official server exposes a Chroma Cloud collection as a retrieval surface for the assistant. Add documents, list coll"
canonical: "https://modelpiper.com/mcp-tools/chroma"
---

# Chroma MCP Server for ToolPiper · ModelPiper

> Vector and full-text search over a Chroma collection. Chroma is an open-source embedding database; this official server exposes a Chroma Cloud collection as a retrieval surface for the assistant. Add documents, list coll

C

# Chroma MCP Server

✓ verified

Vector and full-text search over a Chroma collection.

Install Chroma in ToolPiper

Don't have ToolPiper? We'll take you to the download.

[Open repository →](https://github.com/chroma-core/chroma-mcp)

Publisher

[Chroma](https://github.com/chroma-core/chroma-mcp)

License

Apache-2.0

Transport

Local subprocess

Tools

4

## What this server does

Chroma is an open-source embedding database; this official server exposes a Chroma Cloud collection as a retrieval surface for the assistant. Add documents, list collections, and query by semantic similarity or metadata filter. It is a clean foundation for retrieval-augmented workflows: ingest a corpus once, then let the model pull the most relevant chunks at answer time. The configuration here targets Chroma Cloud; the same server can point at a local or self-hosted Chroma by changing the client type.

## Tools included

-   chroma\_query\_documents
    
    Query a collection by semantic similarity.
    
-   chroma\_add\_documents
    
    Add documents with embeddings to a collection.
    
-   chroma\_list\_collections
    
    List collections in the database.
    
-   chroma\_get\_documents
    
    Fetch documents by ID or filter.
    

The authoritative list comes from the server's tools/list at runtime. This catalog entry may lag the upstream until the next ToolPiper release.

## Install in ToolPiper

ToolPiper handles the JSON configuration. Click Install, fill in any required tokens, and the server is ready in your chat.

Install Chroma in ToolPiper

Don't have ToolPiper? We'll take you to the download.

## Install in another client

Install in another MCP client (Claude Desktop, Cursor, Continue, Cline)

Claude Desktop Cursor Continue Cline

Add this to ~/Library/Application Support/Claude/claude\_desktop\_config.json.

```
{
  "mcpServers": {
    "chroma": {
      "command": "uvx",
      "args": [
        "chroma-mcp",
        "--client-type",
        "cloud",
        "--tenant",
        "${CHROMA_TENANT}",
        "--database",
        "${CHROMA_DATABASE}",
        "--api-key",
        "${CHROMA_API_KEY}"
      ]
    }
  }
}
```

Copy

## Example prompts

-   "Add these support articles to the knowledge-base collection."
    
    Copy
-   "Find the three most relevant documents for 'how do refunds work'."
    
    Copy
-   "List my collections and how many documents each holds."
    
    Copy

## Security notes

For Chroma Cloud the API key gates access to your tenant and bills against your account; treat it as a credential. Collections store whatever text you add, in a hosted database, so be deliberate about ingesting anything sensitive. A self-hosted Chroma avoids the cloud credential but is only as secure as its host.

## Related tools

-   [
    
    P
    
    ### Postgres
    
    ✓ verified
    
    Query Postgres databases with read-only SQL.
    
    DataLocal subprocess1 tool
    
    
    
    
    
    ](/mcp-tools/postgres)
-   [
    
    S
    
    ### SQLite
    
    ✓ verified
    
    Query SQLite databases and run business-intelligence prompts.
    
    DataLocal subprocess4 tools
    
    
    
    
    
    ](/mcp-tools/sqlite)
-   [
    
    R
    
    ### Redis
    
    ✓ verified
    
    Interact with Redis key-value stores from the assistant.
    
    DataLocal subprocess4 tools
    
    
    
    
    
    ](/mcp-tools/redis)
-   [
    
    A
    
    ### AWS Knowledge Base
    
    ✓ verified
    
    Retrieve answers from an AWS Bedrock Knowledge Base.
    
    DataLocal subprocess1 tool
    
    
    
    
    
    ](/mcp-tools/aws-kb-retrieval)

[← Back to all MCP tools](/mcp-tools)
