We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/justmert/hashpilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.chromadb•292 B
# ChromaDB with curl for health checks
# Extends official image to add HTTP client for Docker health checks
FROM chromadb/chroma:latest
# Add curl for health checks (official image is minimal, has no HTTP client)
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*