Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"chroma": {
"env": {
"LOG_LEVEL": "INFO",
"MCP_LOG_LEVEL": "INFO",
"CHROMA_LOG_DIR": "/path/to/your/logs",
"CHROMA_DATA_DIR": "/path/to/your/data",
"CHROMA_CLIENT_TYPE": "persistent",
"MCP_SERVER_LOG_LEVEL": "INFO"
},
"args": [
"chroma-mcp-server"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server integration for Chroma, the open-source embedding database.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'chroma-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked chroma-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / ai-ml
Persistent memory using a knowledge graph
Query and manage PostgreSQL databases directly from AI assistants
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for Chroma_mcp_server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server integration for Chroma, the open-source embedding database.
Chroma MCP Server creates a persistent, searchable "working memory" for AI-assisted development:
Key features:
See the Getting Started with your Second Brain guide for more details.
# Basic installation
pip install chroma-mcp-server
# Full installation with all embedding models
pip install "chroma-mcp-server[full]"
# With in-memory storage (data lost on restart)
chroma-mcp-server --client-type ephemeral
# With persistent storage
chroma-mcp-server --client-type persistent --data-dir ./my_data
Add or modify .cursor/mcp.json in your project root:
{
"mcpServers": {
"chroma": {
"command": "uvx",
"args": [
"chroma-mcp-server"
],
"env": {
"CHROMA_CLIENT_TYPE": "persistent",
"CHROMA_DATA_DIR": "/path/to/your/data",
"CHROMA_LOG_DIR": "/path/to/your/logs",
"LOG_LEVEL": "INFO",
"MCP_LOG_LEVEL": "INFO",
"MCP_SERVER_LOG_LEVEL": "INFO"
}
}
}
}
chat_history_v1, codebase_v1) are automatically created on server startup if they don't exist.