We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/8b-is/smart-tree'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build-and-install.sh•601 B
#!/bin/bash
# build-and-install.sh - Smart Tree Build & Install Script
# Rebuilds Smart Tree and installs it, clearing shell cache to prevent hanging issues
set -e # Exit on any error
echo "🔨 Building Smart Tree..."
cargo build --release
echo "📦 Installing Smart Tree..."
sudo cp ./target/release/st /usr/local/bin/st
echo "🧹 Clearing shell cache..."
hash -r
echo "✅ Build and install complete!"
echo "Testing version:"
st --version
echo ""
echo "🎉 Smart Tree is ready to use!"
echo " Run 'st --help' to see all options"
echo " Run 'st --mcp-config' to set up AI integration"