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
lib.rs•323 B
//! Terminal MCP Server Library
//!
//! This library contains the MCP protocol layer types and handlers.
//! The actual server binary is in main.rs.
pub mod protocol;
pub mod schema;
pub mod tools;
// Re-export commonly used types
pub use protocol::TerminalMcpServer;
pub use schema::SchemaTransformer;
pub use tools::*;