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
terminal_demo.rs•657 B
//! Smart Tree Terminal Interface Demo
//!
//! Shows how the terminal can anticipate developer needs!
use anyhow::Result;
use st::terminal::SmartTreeTerminal;
#[tokio::main]
async fn main() -> Result<()> {
println!("🌳 Smart Tree Terminal Interface Demo");
println!("=====================================");
println!();
println!("Starting terminal interface...");
println!("Press Ctrl+C to exit");
println!();
// Create and run the terminal
let mut terminal = SmartTreeTerminal::new()?;
terminal.run().await?;
Ok(())
}
// Trisha says: "It's like having an assistant who files your taxes while you sleep!" 💤