Skip to main content
Glama

Chroma MCP Server

by djm81
build.sh829 B
#!/bin/bash # Build the package # --- Define Project Root --- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PROJECT_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)" # --- Change to Project Root --- cd "$PROJECT_ROOT" echo "ℹ️ Changed working directory to project root: $PROJECT_ROOT" # Install hatch if not installed if ! command -v hatch &> /dev/null; then echo "Hatch not found. Installing hatch..." pip install hatch fi # Clean previous builds (use relative paths now) echo "Cleaning previous builds..." rm -rf dist/ build/ *.egg-info # Format code before building echo "Formatting code with Black via Hatch..." hatch run black . # Build the package echo "Building package with Hatch..." hatch build echo "Build complete. Distribution files are in the 'dist' directory." ls -la dist/ # Use relative path

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/djm81/chroma_mcp_server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server