//! MCP (Model Context Protocol) server for dsct.
//!
//! Exposes packet dissection capabilities as MCP tools over stdio transport.
//! Start with `dsct mcp`.
//!
//! This module currently provides:
//! - `raw_mcp`: Custom minimal server that streams `read_packets` output
//! incrementally to stdout.
use ResourceLimits;
use crateResult;
/// Start the MCP server on stdio.
///
/// Uses the custom raw implementation that streams packet data directly to
/// stdout, keeping memory usage bounded regardless of capture size.