1 2 3 4 5 6 7 8 9 10
//! Agentroot MCP Server //! //! Model Context Protocol server for integration with AI assistants. mod protocol; mod resources; mod server; pub mod tools; pub use server::start_server;