.PHONY: help test mcp-inspect

help: ## Show this help message
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'

test: ## Run tests
	python3 -m pytest tests/

mcp-inspect: ## Run MCP inspector
	@bash scripts/mcp_inspect.sh
