Back to MCP Servers

ChromaDB

Interact with ChromaDB for semantic document search, metadata filtering, and persistent vector storage in RAG pipelines

chromadbvector-databaseembeddingsaisearchrag

Installation

pip install chroma-mcp-server

Configuration

{
  "mcpServers": {
    "chromadb": {
      "command": "uvx",
      "args": ["chroma-mcp-server"],
      "env": {
        "CHROMA_HOST": "localhost",
        "CHROMA_PORT": "8000"
      }
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes
View source on GitHub