outrig_cli/mcp_self/mod.rs
1//! Self-description MCP server for `outrig mcp self`.
2//!
3//! This server runs on the host and exposes only read/advisory tools:
4//! embedded docs, schema projection, suggested tools, and
5//! non-mutating validators for proposed image-config artifacts.
6
7#![deny(clippy::print_stdout)]
8
9pub(crate) mod docs;
10mod schema;
11mod server;
12mod suggestions;
13pub(crate) mod validate;
14
15pub use server::serve_stdio;