We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gradion-ai/ipybox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup_uv.sh•650 B
#!/bin/bash
# Install uv only in remote (web) environments
if [ "$CLAUDE_CODE_REMOTE" = "true" ]; then
curl -LsSf https://astral.sh/uv/install.sh | sh
# Add uv to PATH for the session
export PATH="$HOME/.local/bin:$PATH"
# Persist PATH for subsequent commands
if [ -n "$CLAUDE_ENV_FILE" ]; then
echo "export PATH=\"$HOME/.local/bin:\$PATH\"" >> "$CLAUDE_ENV_FILE"
fi
fi
# Install project dependencies
uv sync
# Set up pre-commit hooks (only in remote environments to avoid
# overwriting the main repo's hook path when running in worktrees)
if [ "$CLAUDE_CODE_REMOTE" = "true" ]; then
uv run invoke precommit-install
fi
exit 0