Remote ChromaDB vector database MCP server with streamable HTTP transport
Remote ChromaDB vector database MCP server with streamable HTTP transport. The chromadb remote mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 7 defined tools rather than through you.
A Streamable HTTP MCP (Model Context Protocol) server that provides remote access to ChromaDB for AI assistants like Claude. Enables semantic search and vector database operations from mobile devices and remote locations.
All clients access the same self-hosted ChromaDB through this remote MCP server. Vector embeddings and semantic search results persist across all platforms.
Everything the assistant can do here goes through one of these:
chroma_search — Hybrid dense + sparse search (RRF). The algorithm itself works on a single node; chromadb open-source simply hasn't implemented the search() endpointchroma_fork_collection — Zero-copy fork (segment-level operation on object storage — architecturally requires the distributed compactor/storage stack)chroma_get_fork_count — Fork metadata lookup (depends on the distributed metadata store)chroma_get_indexing_status — WAL offset + compactor index progress (requires the distributed WAL/compactor services)Path — PurposeOverview — All clients access the same self-hosted ChromaDB through this remote MCP server. Vector embeddings and semantic search results persist across allAuthentication — The Authentication tool exposed by this serverYou will need 5 environment variables: MCP_AUTH_TOKEN, CHROMA_DATA_PATH, CHROMA_HOST, CHROMA_AUTH_TOKEN, YOUR_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.
Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. ChromaDB Remote's toolset — chroma_search, chroma_fork_collection, chroma_get_fork_count and 4 more — is a fair guide to whether it matches your workflow. It is maintained by meloncafe; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| chroma_search | Hybrid dense + sparse search (RRF). The algorithm itself works on a single node; chromadb open-source simply hasn't implemented the search() endpoint in the local executor. |
| chroma_fork_collection | Zero-copy fork (segment-level operation on object storage — architecturally requires the distributed compactor/storage stack). |
| chroma_get_fork_count | Fork metadata lookup (depends on the distributed metadata store). |
| chroma_get_indexing_status | WAL offset + compactor index progress (requires the distributed WAL/compactor services). |
| Path | Purpose |
| Overview | All clients access the same self-hosted ChromaDB through this remote MCP server. Vector embeddings and semantic search results persist across all platforms. |
| Authentication | The Authentication tool exposed by this server. |
| Variable | Description | Required |
|---|---|---|
| MCP_AUTH_TOKEN | Credential the server authenticates with. | Yes |
| CHROMA_DATA_PATH | Filesystem location the server is allowed to use. | Optional |
| CHROMA_HOST | Endpoint or connection string the server talks to. | Optional |
| CHROMA_AUTH_TOKEN | Credential the server authenticates with. | Yes |
| YOUR_TOKEN | Credential the server authenticates with. | Yes |
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.
AWS Labs' official server suite — current AWS docs, CDK guidance, cost analysis and service tools.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.
Workers, KV, R2 and D1 by conversation — Cloudflare's official remote servers for building and observability.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.