We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ofriw/chunkhound'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.shโข1.05 kB
#!/bin/bash
# ChunkHound Development Setup Script
# Makes it dead simple to get started with development
set -e
echo "๐ง ChunkHound Development Setup"
echo "================================="
# Check if uv is installed
if ! command -v uv &> /dev/null; then
echo "โ uv is required but not installed"
echo " Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh"
exit 1
fi
echo "โ uv detected"
# Sync dependencies with uv
echo "๐ฆ Installing dependencies with uv..."
uv sync
# Verify installation
echo "๐งช Verifying installation..."
uv run chunkhound --version
echo ""
echo "๐ Setup Complete!"
echo "==================="
echo ""
echo "To use ChunkHound:"
echo " uv run chunkhound run . # Index current directory"
echo " uv run chunkhound mcp # Start MCP server"
echo ""
echo "Development commands:"
echo " make test # Run tests"
echo " make dev # Index current directory"
echo " make help # See all available commands"
echo ""
echo "Happy coding! ๐"