//! AimDB MCP Server
//!
//! Model Context Protocol (MCP) server implementation for AimDB.
//! Enables Large Language Models to interact with running AimDB instances
//! for introspection, debugging, and monitoring.
//!
//! # Architecture
//!
//! ```text
//! LLM Host (VS Code/Claude)
//! ↓ stdio (JSON-RPC 2.0)
//! aimdb-mcp server
//! ↓ aimdb-client library
//! AimDB instances (Unix sockets)
//! ```
//!
//! # MCP Protocol
//!
//! - **Transport**: stdio with NDJSON
//! - **Protocol**: JSON-RPC 2.0
//! - **Version**: 2025-06-18
//! - **Capabilities**: Tools (7), Resources (5), Prompts (2)
pub use ;
pub use McpServer;
pub use StdioTransport;