data
Chroma MCP Integration for Claude Agent SDK
Connect Chroma to Claude Agent SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Chroma to Claude Agent SDK
Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server.
Add a KosmoKrator stdio MCP server to the Claude Agent SDK options. The gateway is local, scoped to this integration, and starts with
--write=deny so Claude Agent SDK can inspect read-capable tools without receiving write access by default.
Chroma MCP Config for Claude Agent SDK
Use a narrow integration list so the agent does not load unrelated tools.
{
"mcpServers": {
"kosmokrator-chroma": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=chroma",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=chroma --write=deny Why Use KosmoKrator Here
Expose only Chroma instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Chroma Tools Visible to Claude Agent SDK
Claude Agent SDK sees stable MCP tool names generated from the Chroma integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__chroma__chroma_list_collections | chroma.chroma_list_collections | Read | List all vector collections in Chroma. Returns collection names and IDs that can be used for further operations. |
integration__chroma__chroma_get_collection | chroma.chroma_get_collection | Read | Get details of a specific Chroma collection by its name or UUID, including metadata and document count. |
integration__chroma__chroma_create_collection | chroma.chroma_create_collection | Write | Create a new vector collection in Chroma. Collections are used to store and query document embeddings. |
integration__chroma__chroma_add_documents | chroma.chroma_add_documents | Write | Add documents with embeddings to a Chroma collection. Each document requires an ID and either embeddings or text content. |
integration__chroma__chroma_query_documents | chroma.chroma_query_documents | Read | Search for similar documents in a Chroma collection using query embeddings or text. Returns the most similar documents ranked by distance. |
integration__chroma__chroma_get_document | chroma.chroma_get_document | Read | Retrieve specific documents from a Chroma collection by their IDs. Returns the full documents including text, embeddings, and metadata. |
integration__chroma__chroma_get_health | chroma.chroma_get_health | Read | Check the health status of the Chroma vector database server. Returns heartbeat and version information. |