//! MCP server adapter for eggsearch.
//!
//! Exposes a minimal, stable tool surface:
//!
//! - `web_search` — live metasearch over configured upstream providers.
//! - `web_fetch` — bounded extraction of one explicit HTTP(S) URL.
//! - `provider_status` — diagnostic report of configured providers.
//!
//! The public API ([`EggsearchServer`], [`ServerState`], [`Policy`]) is
//! re-exported at the crate root of this module. The submodule types are
//! internal and not part of the stable surface.
pub use Policy;
pub use EggsearchServer;
pub use ServerState;