We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aybelatchane/mcp-server-terminal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•435 B
//! Element detector implementations.
pub mod border;
pub mod button;
pub mod checkbox;
pub mod input;
pub mod menu;
pub mod progress;
pub mod status_bar;
pub mod table;
pub use border::BorderDetector;
pub use button::ButtonDetector;
pub use checkbox::CheckboxDetector;
pub use input::InputDetector;
pub use menu::MenuDetector;
pub use progress::ProgressDetector;
pub use status_bar::StatusBarDetector;
pub use table::TableDetector;