outrig-cli 0.1.0

Command-line tool for running LLM agents with podman-isolated MCP servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Self-description MCP server for `outrig mcp self`.
//!
//! This server runs on the host and exposes only read/advisory tools:
//! embedded docs, schema projection, suggested tools, and
//! non-mutating validators for proposed image-config artifacts.

#![deny(clippy::print_stdout)]

pub(crate) mod docs;
mod schema;
mod server;
mod suggestions;
pub(crate) mod validate;

pub use server::serve_stdio;