Chromadb management
Skill dor-rondel/agent-skills-mcp/resources/docker/chromadb-management
Use this skill when the user asks to inspect, query, reset, or manage collections inside the ChromaDB vector store container.From its SKILL.md
npx -y skills add dor-rondel/agent-skills-mcp --skill chromadb-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 3 commands, including `curl -s http://127.0.0.1:8000/api/v1/heartbeat` and 2 more.
- fetches URLsInstructs the agent to fetch 2 URLs, including http://127.0.0.1:8000/api/v1/heartbeat and 1 more.
SKILL.md
1.0 KB, 225 tokens by cl100k_base, as published. Nobody here has run it
ChromaDB Vector Store Management
This skill handles data operations, diagnostics, and API validations for the local ChromaDB service running on port 8000.
🛠️ Service Target
- Host Address: http://127.0.0.1:8000
- Data Volume: Persisted locally at
./chroma_data
🏃♂️ Core Commands
1. Verify Service Liveness
Check if the ChromaDB server instance is up and responsive to HTTP requests:
curl -s http://127.0.0.1:8000/api/v1/heartbeat
2. Inspect Collections via API
Query the database server to view all existing collections and vector indices:
curl -s http://127.0.0.1:8000/api/v1/collections
3. Review Container DB Logs
Monitor data ingestion, index updates, or read/write errors directly from the database server instance:
docker-compose logs chroma
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.