//! 1Password MCP Server
//!
//! This library provides an MCP (Model Context Protocol) server that wraps the
//! 1Password CLI (`op`) to enable AI assistants to securely access secrets and
//! manage vault items.
//!
//! ## Features
//!
//! - Read-only access to 1Password vaults and items
//! - Secret reading via `op://` references
//! - Account and vault listing
//! - Uses existing `op` CLI authentication (app integration or service accounts)
//!
//! ## Tools
//!
//! The server exposes the following MCP tools:
//!
//! - `whoami` - Get current user information
//! - `account_list` - List configured accounts
//! - `vault_list` - List accessible vaults
//! - `vault_get` - Get vault details
//! - `item_list` - List items (with filtering)
//! - `item_get` - Get item details
//! - `secret_read` - Read secrets by reference
pub use ;
pub use OnePasswordHandler;