C

Chroma

Query Chroma vector database collections.

·No reviews yet
Repo
Share:

About

Auto-generated

Chroma is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Chroma.

What is the Chroma MCP and how can it be used?
The Chroma MCP integrates with Chroma vector databases. It enables querying of Chroma collections to support retrieval-augmented generation (RAG) and other vector search applications.
How can I install the Chroma MCP in a client like Cline?
The Chroma MCP typically connects via stdio. Refer to your MCP client's documentation for instructions on configuring stdio-based MCPs. You will likely need to specify the path to an executable.
Does the Chroma MCP require an API key or other authentication?
No, the Chroma MCP is configured for 'none' authentication. It does not require API keys, OAuth, or other credentials for connection.
What are the core capabilities exposed by the Chroma MCP?
The Chroma MCP is designed for querying Chroma vector database collections. Its primary capabilities involve interacting with the vector database for search and retrieval operations.
Is there a cost associated with using the Chroma MCP?
The Chroma MCP itself is open source under an MIT license, as indicated by its repository. The cost depends on how and where you deploy and host your Chroma vector database instances.
What is a prerequisite for using the Chroma MCP effectively?
A key prerequisite for using the Chroma MCP is having a functional Chroma vector database instance with populated collections. Without a Chroma database, the MCP has no data to query.

Install Chroma

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "chroma": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chroma"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "chroma": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chroma"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "chroma": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chroma"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.